Home / javascript / You are given a two-digit integer n. Return the sum of its digits.

You are given a two-digit integer n. Return the sum of its digits.

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 n

A positive two-digit integer.

Guaranteed constraints:

10 ≤ n ≤ 99.

[output] integer

The 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;

}

Solution

About admin

Check Also

What is hoisting in javascript with example?

Hoisting in JavaScript is a behavior where variable and function declarations are moved to the …

Leave a Reply

Your email address will not be published. Required fields are marked *