Created
August 21, 2018 07:19
-
-
Save travishen/919a427f9f717932698257ebfdc33b57 to your computer and use it in GitHub Desktop.
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 | |
// JavaScript is liberal about white space! | |
firstname, | |
// JavaScript is so liberal about white space!! | |
lastname, | |
// JavaScript is such liberal about white space!!! | |
// Oh my god! | |
email; | |
// even do it in object literal! | |
var person = { | |
// JavaScript is liberal about white space! | |
firstname: 'John', | |
// JavaScript is so liberal about white space!! | |
lastname: 'Doe', | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment