Advertisement
darkmavis1980

Untitled

Feb 25th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var test = function(){
  2.   this.hello = 'world';
  3.   this.num = 1;
  4. }
  5.  
  6. test.prototype = {
  7.   valueOf: function(){
  8.     return this.num;
  9.   }
  10. }
  11.  
  12. var obj = new test();
  13.  
  14. var a = obj + 2;
  15.  
  16. console.log(a); //print 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement