Quise agregar una opción para que el usuario pudiera decidir cuantas veces quiere que se haga la multiplicación, esto lo hice agragando una variable limit. Cuando la uso con la función While todo marcha bien, pero al intentarlo con For no me lo permite. Me gustaría saber por qué pasa esto. Gracias!
<meta charset="UTF-8">
<html>
<head>
</head>
<body>
<h3>Multiplying tables</h3>
</body>
</html>
<script>
function jumpLine() {
document.write("<br>");
}
function print(frase) {
document.write(frase);
jumpLine();
}
alert("Welcome to the multiplying table program")
var multiplicand = 1;
var multiplier = parseInt(prompt("Enter the multiplier"));
var limit = parseInt(prompt("Enter the amount of times to calculate"));
//while (multiplicand <= limit) {
//
// print(multiplier + " x " + multiplicand + " = " + multiplier*multiplicand);
// multiplicand++;
//
// }
for (var multiplicand = 1; mutiplicand <= limit; multiplicand++) {
print(multiplier + " * " + multiplicand + " = " + multiplier*multiplicand);
}
</script>