1. Accessing literals and local variables is the fastest, while accessing array elements and object members is relatively slow. When accessing an object member, the prototype chain is searched, just like the scope chain. 2. If the member found is too deep in the prototype chain, access speed will be slow. So try to minimize the number of searches and nesting depth of object members. Examples// Perform two object member searches function hasEitherClass(element, className1, className2) { return element.className === className1 || element.className === className2; } //Optimization, if the variable does not change, you can use a local variable to save the search content function hasEitherClass(element, className1, className2) { const currentClassName = element.className; return currentClassName === className1 || currentClassName === className2; } Content extension: js object operation performance issues 1 The longer the string is, the time it takes to use str+="xxx" will increase significantly (almost exponentially). 2 When the object array has only 400 elements, the access time to the properties and methods of each element reaches 1/4 millisecond for each property or method! If an element has 10 attributes, then a traversal of the array will take at least 1 second, which is terrible. 3 FileSystem operations, especially write operations, are almost proportional to the square of the length of the string to be written. 4 Do not use your own methods to perform string operations, especially replacement, search, and comparison; I don't have a good grasp of regular expressions. When using custom functions, I found that in the traversal mentioned in 2) above, The custom function takes up to 80% of the total time! This concludes this article on the detailed example of js object reading speed. For more information about js object reading speed, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed tutorial on installing Hbase 2.3.5 on Vmware + Ubuntu18.04
>>: Web developers are concerned about the coexistence of IE7 and IE8
INSERT INTO hk_test(username, passwd) VALUES (...
<br />Preface: Before reading this tutorial,...
background I talked to my classmates about a boun...
Hello everyone, today I want to share with you ho...
Mysql 8.0 installation problems and password rese...
1. Refer to the official website to install docke...
8 optimization methods for MySQL database design,...
Install MySQL 8.0 docker run -p 63306:3306 -e MYS...
Follow the official tutorial, download the instal...
What is a descending index? You may be familiar w...
Background Many website designs generally consist...
In actual project development, if we have a lot o...
MySQL supports three types of comments: 1. From t...
This article shares the specific code for JavaScr...
In order to download this database, it takes a lo...