We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
众所周知,在部分浏览器会对一些对象做Hash化"hash table mode" 优化(比如动态增加太多字段),如果在这些对象进行for in 操作并不是明智的, 而在Regularjs中大量应用了_.extend(它之中应用了for .. in ), 由于有些对象是开发者在使用中传入的,并且是用来承载数据的(比如data), 所以带来了客观的性能损耗
for .. in
The text was updated successfully, but these errors were encountered:
No branches or pull requests
众所周知,在部分浏览器会对一些对象做Hash化"hash table mode" 优化(比如动态增加太多字段),如果在这些对象进行for in 操作并不是明智的, 而在Regularjs中大量应用了_.extend(它之中应用了
for .. in
), 由于有些对象是开发者在使用中传入的,并且是用来承载数据的(比如data), 所以带来了客观的性能损耗The text was updated successfully, but these errors were encountered: