Created
October 11, 2011 23:22
-
-
Save valueof/1279782 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array.prototype.join = function () { | |
return "LOL, UMAD?"; | |
}; | |
(function () { | |
"use built-ins"; | |
console.log(['Hello', 'World'].join(', ')); // Hello, World | |
}()); | |
['Hello', 'World'].join(', '); // LOL, UMAD? |
:-) Well, I can at least dream.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you get nearly the same browser coverage as that would get with pulling real builtins out of
__proto__