We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i have a script that basically checks
someVariable === undefined && etc...
When i convert it to jsfuck and run it and then the browser it gives error because it is read as: someVariable === && etc...
The text was updated successfully, but these errors were encountered:
You can check by compiling this code:
if(undefined == undefined && true){console.log("test")}
It gives error Unexpected token '==' and if you click the VM in the debug console to see what is doing it appears it gets compiled to this:
(function anonymous( ) { if( == && true){console.log("lol")} })
Sorry, something went wrong.
Same as #68 (fixed in #75)
I assume you are talking about the website, which has outdated version.
No branches or pull requests
i have a script that basically checks
someVariable === undefined && etc...
When i convert it to jsfuck and run it and then the browser it gives error because it is read as:
someVariable === && etc...
The text was updated successfully, but these errors were encountered: