JavaScript

Input an integer (n) and computes the value of a+aa+aaa in JavaScript1 min read

Write a program that computes the value of a+aa+aaa+aaaa with a given digit as the value of a in JavaScript.

Write a JavaScript program that accepts an integer (n) and computes the value of n+nn+nnn.




JavaScript Code:

Output:

Input an integer (n) and computes the value of a+aa+aaa in JavaScript Example

Input an integer (n) and computes the value of a+aa+aaa in JavaScript Example

Leave a Comment