Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="bg">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <script>
- let myFunction = (a, b) => {
- let p = document.createElement("p");
- document.body.appendChild(p).textContent = a * b;
- };
- myFunction(4, 6);
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment