Como puedo calcular operadores aritméticos?? | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

Como puedo calcular operadores aritméticos??

Poner los datos en un archivo .js y resolverlos desde nuestro html

17th May 2019, 2:37 PM
H1L4R10
H1L4R10 - avatar
2 Respuestas
+ 2
https://code.sololearn.com/WJWHF7ZaU2JR/#html <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <div id="result"></div> <script> var num1 = 2; var num2 = 3; var sum = num1 + num2; var el = document.getElementById("result"); el.innerHTML = sum; </script> </body> </html>
17th May 2019, 2:51 PM
AgentSmith
+ 1
Please guys try to use English language to make your questions public to make everyone understanding
17th May 2019, 3:11 PM
Basel.Al_hajeri?.MBH()
Basel.Al_hajeri?.MBH() - avatar