You are given a two-digit integer n. Return the sum of its digits.
Example
For n = 29, the output should be
solution(n) = 11.
Input/Output
[execution time limit] 4 seconds (js) [input] integer nA positive two-digit integer.
Guaranteed constraints:
10 ≤ n ≤ 99.
[output] integerThe sum of the first and second digits of the input number.
[JavaScript] Syntax Tips// Prints help message to the console
// Returns a string
function helloWorld(name) {
console.log(“This prints to the console when you Run Tests”);
return “Hello, ” + name;
}