jacekwilczynski

JS prototypes initialization

Oct 8th, 2019
541
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const guitar = {};
  2. const piano = new Object();
  3.  
  4. const cellos = [];
  5. const trumpets = new Array();
  6.  
  7. function strum() {}
  8. const shred = () => {};
  9. const throwAtThePublic = new Function();
  10. function Musician() {}
  11.  
  12. const steveMorse = new Musician();
Advertisement
Add Comment
Please, Sign In to add comment