Generation

class from descriptionSun, 19 Mar 2023

Create a programme multiplication of two number

<!DOCTYPE html> <html> <head> <script> function mul(n1,n2){ return n1*n2; } document.getElementById("demo").innerHTML = mul(5,6); </script> </head> <body> <p id="demo"></p> </body> </html>

Javascript
Generate More

Questions about programming?Chat with your personal AI assistant