Guest User

Untitled

a guest
Jul 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. // prototypes1a.js
  2.  
  3. var obj = {};
  4.  
  5. obj.toString = function() {
  6. console.log("I'm an object!");
  7. };
  8.  
  9. obj.toString();
  10. // Logs: "I'm an object!"
Add Comment
Please, Sign In to add comment