Comment on Executing non-alphanumeric JavaScript without parenthesesComments−amarpatel10yI found this article had more depth: http://patriciopalladino.com/blog/2012/08/09/non-alphanumeri...−pythonistah10yThe parentheses-less javascript dialect in the title of this HN article relies on ES6 and uses 6 characters: !+[]`$ The parent link above is ES5 and uses 8 characters: !+[](){} The jsfuck.com ES6 dialect uses 6 characters: !+[]() jsfuck was previously ES5 but they now rely on ES6isms to shorten their code.−mrspeaker10yThat's a better intro, but the "point" of this article was about doing it without using parenthesis.
Comments
I found this article had more depth: http://patriciopalladino.com/blog/2012/08/09/non-alphanumeri...
The parentheses-less javascript dialect in the title of this HN article relies on ES6 and uses 6 characters:
The parent link above is ES5 and uses 8 characters: The jsfuck.com ES6 dialect uses 6 characters: jsfuck was previously ES5 but they now rely on ES6isms to shorten their code.That's a better intro, but the "point" of this article was about doing it without using parenthesis.