Computer Science, asked by itsbhoomipimple, 6 months ago

write javascript program to display numbers from 1 to 10 using while loop

Answers

Answered by surajitmetya82
8

Explanation:

var input = 1;

while (input <= 10) {

console.log(input);

input++;

}

Answered by scholarsristhi
3

Answer:

thank You ...... sanjay

Similar questions