Después de observar en diferentes repositorios y páginas al terminar encontramos la solución que te mostraremos más adelante.
Ejemplo 1: cómo hacer una multiplicación en javascript
//To multiply in Java script, you have to put an asterisk symbol '*' between them. If you have stored two numbers in variables, just put an asterisk symbol between the variable names.
//For example:
var a = 5
var b = 6
var c = a*b
var d = 5*6
Bot.send (c)/ print (c)// or whatever you use to get output
Bot.send (d)/ print (d)// or whatever you use to get output
//output will be: 30, 30
Ejemplo 2: tabla de multiplicar javascript
let table = document.createElement("table");
for (i = 0; i < 10; i++)
let tr = document.createElement("tr");
for (j = 0; j < 10; j++)
let td = document.createElement('td');
td.innerHTML = (j + 1) * (i + 1);
// td.innerHTML += (i * j) + ' '; same output if i/j = 1 & i/j < 11
tr.appendChild(td);
table.appendChild(tr);
target.appendChild(table);
valoraciones y reseñas
Si te mola el asunto, puedes dejar un post acerca de qué te ha gustado de esta crónica.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)