admin管理员组文章数量:1341462
In Javascript, when your getting a property of an object, is there a performance penalty to getting the whole object vs only getting a property of that object?
Also Keep in mind I'm not talking about DOM access these are pure simple Javascript objects.
For example:
Is there some kind of performance difference between the following code:
Assumed to be faster but not sure:
var length = some.object[key].length;
if(length === condition){
// Do something that doesnt need anything inside of some.object[key]
}
else{
var object = some.object[key];
// Do something that requires stuff inside of some.object[key]
}
I think this would be slower but not sure if it matters.
var object = some.object[key];
if(object.length === condition){
// Do something that doesnt need anything inside of some.object[key]
}
else{
// Do something that requires stuff inside of some.object[key]
}
In Javascript, when your getting a property of an object, is there a performance penalty to getting the whole object vs only getting a property of that object?
Also Keep in mind I'm not talking about DOM access these are pure simple Javascript objects.
For example:
Is there some kind of performance difference between the following code:
Assumed to be faster but not sure:
var length = some.object[key].length;
if(length === condition){
// Do something that doesnt need anything inside of some.object[key]
}
else{
var object = some.object[key];
// Do something that requires stuff inside of some.object[key]
}
I think this would be slower but not sure if it matters.
var object = some.object[key];
if(object.length === condition){
// Do something that doesnt need anything inside of some.object[key]
}
else{
// Do something that requires stuff inside of some.object[key]
}
Share
Improve this question
asked May 29, 2010 at 22:31
youdontmeanmuchyoudontmeanmuch
2651 gold badge4 silver badges9 bronze badges
1 Answer
Reset to default 14Yes, there is a performance penalty.
The more deep is a property nested, more time will be required to perform the property lookup.
Check this free chapter of the book High Performance JavaScript, in the page 31, it talks specifically about Nested Members.
(Access time related to property depth)
See also this performance test:
- JavaScript Data Access Test
本文标签: javascript object access performanceStack Overflow
版权声明:本文标题:javascript object access performance - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743648065a2515846.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论