table create using the programming in javascript

technical talkiess
0

 <script>

var number = parseInt(prompt("Enter the number which you multiple and create table"));


for(let i =1 ;  i <=10 ;  i++){

const result = i * number;


console.log(result);

}

</script>

Tags

Post a Comment

0Comments

Thanks you for commenting your questions. I will see question and respond you.

Post a Comment (0)