Guest User

Untitled

a guest
Oct 23rd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. function Console() {
  2. console.log(123);
  3. }
  4.  
  5. var a = Console();
  6.  
  7. <!DOCTYPE html>
  8. <html lang="en">
  9.  
  10. <head>
  11. <meta charset="UTF-8">
  12. <title>Title</title>
  13. </head>
  14.  
  15. <body>
  16.  
  17. <script src="bundle.js"></script>
  18.  
  19. </body>
  20.  
  21. </html>
  22.  
  23. function Console() {
  24. console.log(123);
  25. }
  26.  
  27. <!DOCTYPE html>
  28. <html lang="en">
  29.  
  30. <head>
  31. <meta charset="UTF-8">
  32. <title>Title</title>
  33. </head>
  34.  
  35. <body>
  36.  
  37. <script src="bundle.js"></script>
  38.  
  39. <script>
  40. var a = new Console();
  41. </script>
  42.  
  43. </body>
  44.  
  45. </html>
  46.  
  47. (function () {
  48.  
  49. function yourConstructor() {/* your code */};
  50.  
  51. window.yourConstructor = yourConstructor;
  52.  
  53. })();
Add Comment
Please, Sign In to add comment