Guest User

Untitled

a guest
Oct 20th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. export default function sum(x, y) {
  2. return x + y;
  3. }
  4.  
  5. import { sum } from './mymodule';
  6.  
  7.  
  8. window.onload = function () {
  9. const result = sum(2, 3);
  10. console.log(result);
  11. };
  12.  
  13. <!DOCTYPE html>
  14. <html>
  15. <head>
  16. <meta charset="utf-8" />
  17. <title>App2</title>
  18. <link href="css/default.css" rel="stylesheet" />
  19. </head>
  20. <body>
  21. <div>Content goes here!</div>
  22. <script src="js/main.js" type="module">
  23. </script>
  24. </body>
  25. </html>
Add Comment
Please, Sign In to add comment