Page 1 of 1

Using javascript Given three integers A, B, and C, determine their sum. Your task is to implement the function getSum(A,

Posted: Fri May 20, 2022 3:41 pm
by answerhappygod
Using javascript
Given three integers A, B, and C, determine their sum.
Your task is to implement the function getSum(A, B, C) which
returns the sum A + B + C.
Constraints
1≤A,B,C≤100
function getSum(A, B, C) {
// Write your code here
return 0;
}