Created
April 9, 2013 18:11
-
-
Save DavidQL/5347981 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
console.time('local'); | |
var myObject = { | |
key1: { | |
key2: { | |
key3: 1 | |
} | |
} | |
} | |
var temp = myObject.key1.key2.key3; | |
for (var i = 0; i < 10000; i++) { | |
temp++; | |
} | |
myObject.key1.key2.key3 = temp; | |
console.timeEnd('local'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment