-
-
Save thm-design/9c7367040232a75234b3903dce54db28 to your computer and use it in GitHub Desktop.
Dirty Javascript reproduction of https://twitter.com/jplur_/status/891358168688754688
This file contains hidden or 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
// Dirty overload the native function | |
var parseInt = function(arg1) { | |
if (arg1 === "Infinity") { | |
return NaN; | |
} | |
if (arg1 === "Infinity+1") { | |
return "Infinity+1"; | |
} | |
if (arg1 === "1+1+1") { | |
return "3?"; | |
} | |
if (arg1 === "") { | |
return "stop it"; | |
} | |
if (arg1 === parseInt) { | |
console.error("Getting really tired of your bullshit"); | |
} | |
} | |
// Then do the magic like at https://twitter.com/jplur_/status/891358168688754688 | |
parseInt("Infinity") // NaN | |
parseInt("Infinity+1") // "Infinity+1" | |
parseInt("1+1+1") // 3? | |
parseInt([]+[]+[]) // "stop it" | |
parseInt(parseInt) // "Getting real tired of your bullshit.." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment