Guest User

Untitled

a guest
Jun 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. var s = "string";
  2.  
  3. String.prototype.testEqual = function(){ return this == s; };
  4. String.prototype.testStrict = function(){ return this === s; };
  5.  
  6. s.testEqual(); // true
  7. s.testStrict(); // false
  8.  
  9. s = new String(s);
  10. s.testEqual(); // true
  11. s.testStrict(); // true
Add Comment
Please, Sign In to add comment