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

Want to kickstart your project?Use the new AI Studio to create your code