// 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
// 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