Valeri173

IP 12

Jan 10th, 2022
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="bg">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <script>
  11. let myFunction = (a, b) => {
  12. let p = document.createElement("p");
  13. document.body.appendChild(p).textContent = a * b;
  14. };
  15. myFunction(4, 6);
  16. </script>
  17. </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment