Created
July 3, 2015 11:47
-
-
Save JavaScript-Packer/17d65a22a6c44c3eb92c to your computer and use it in GitHub Desktop.
Vanity scripting in JavaScript
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
var WHAK = new Object; | |
WHAK.com = 'alert("www.WHAK.com");'; | |
WHAK.ca = 'alert("www.WHAK.ca");'; | |
WHAK.us = 'alert("www.WHAK.us");'; | |
eval(WHAK.com+WHAK.ca+WHAK.us); |
Author
JavaScript-Packer
commented
Jul 7, 2015
var WHAK = {
"com": alert("www.WHAK.com"),
"ca": alert("www.WHAK.ca"),
"us": alert("www.WHAK.us")
}; WHAK.com, WHAK.ca, WHAK.us;
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment