Function for Addition in JavaScript

PHOTO EMBED

Wed Jul 26 2023 20:32:57 GMT+0000 (Coordinated Universal Time)

Saved by @BennyBlvck #javascript

// This function is for the addition of numbers

function addNumbers(a, b) {
    return a + b; 
}

let a = 5
let b = 3

console.log(addNumbers(a, b)); // This is to test the function in the console 
content_copyCOPY