Created
December 14, 2011 05:31
-
-
Save tastycode/1475402 to your computer and use it in GitHub Desktop.
Alternatives to unclear syntax wandwagon
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
with ({$: jQuery.noConflict()}) { | |
console.log("Check me out", $); | |
} | |
console.log($); |
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
with ({$: jQuery.noConflict(), _: _.noConflict()}) { | |
console.log("Check me out", $); | |
console.log("Check me out", _); | |
} | |
console.log($); | |
console.log(_); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment