<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>
<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>
0Comments
Thanks you for commenting your questions. I will see question and respond you.