Created
August 13, 2012 23:15
-
-
Save emphaticsunshine/3344729 to your computer and use it in GitHub Desktop.
With block 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 person ={ | |
"employee":{ | |
"name": "Mohit Seth", | |
"role": "Javascript Developer" | |
} | |
} | |
/*this should be avoided*/ | |
with(person.employee){ | |
console.log(name,role); | |
} |
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
/* This is better way to do it */ | |
var obj = person.employee; | |
console.log( obj.name, obj.role); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment