This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Tap Here!
Smartphone icons created by Freepik - Flaticon
8.8 JS Performance
How to speed up your JavaScript code.
Reduce Activity in Loops
Loops are often used in programming.
Each statement in a loop, including the for statement, is executed for each iteration of the loop.
Statements or assignments that can be placed outside the loop will make the loop run faster.
Bad:
var i;
for (i = 0; i < arr.length; i++) {
Better Code:
var i;
var l = arr.length;
for (i = 0; i < l; i++) {
The bad code accesses the length property of an array each time the loop is iterated.
The better code accesses the length property outside the loop and makes the loop run faster.
Reduce DOM Access
Accessing the HTML DOM is very slow, compared to other JavaScript statements.
If you expect to access a DOM element several times, access it once, and use it as a local variable:
var obj;
obj = document.getElementById("demo");
obj.innerHTML = "Hello";
Reduce DOM Size
Keep the number of elements in the HTML DOM small.
This will always improve page loading, and speed up rendering (page display), especially on smaller devices.
Every attempt to search the DOM (like getElementsByTagName) will benefit from a smaller DOM.
Avoid Unnecessary Variables
Don't create new variables if you don't plan to save values.
Often you can replace code like this:
var fullName = firstName + " " + lastName;
document.getElementById("demo").innerHTML = fullName;
With this:
document.getElementById("demo").innerHTML = firstName + " " + lastName;
Delay JavaScript Loading
Putting your scripts at the bottom of the page body lets the browser load the page first.
While a script is downloading, the browser will not start any other downloads. In addition all parsing and rendering activity might be blocked.
The HTTP specification defines that browsers should not download more than two components in parallel.
An alternative is to use defer="true" in the script tag. The defer attribute specifies that the script should be executed after the page has finished parsing, but it only works for external scripts.
If possible, you can add your script to the page by code, after the page has loaded:
Example
<script>
window.onload = function() {
var element = document.createElement("script");
element.src = "myScript.js";
document.body.appendChild(element);
};
</script>
Avoid Using with
Avoid using the with keyword. It has a negative effect on speed. It also clutters up JavaScript scopes.
The with keyword is not allowed in strict mode.
JavaScript icons used in the buttons provided by ICONS8.COM . Smartphone icons created by Freepik - Flaticon
Example files created in this module:
JS Classes
JS Class Methods part 1
JS Class Methods part 2
JS Modules
Create Object from JSON String
JS Debuggers The console.log() Method
JS Debuggers The debugger Keyword
JS Style Guide - Line Length
JS Literal Constructors
JS Variables
JS Variables - Automatic Type Conversions
JS Variables - NaN
JS Comparisons
JS Functions - Parameter Defaults
End Your Switches with Defaults
JS String Objects cannot be safely compared
JS Objects cannot be compared
JS Common JavaScript Mistakes
JS Breaking a JavaScript Statement part 1
JS Breaking a JavaScript Statement part 2
JS Breaking a JavaScript Statement part 3
JS Breaking a Return Statement part a
JS Breaking a Return Statement part b
JS Breaking a Return Statement part c
JS Breaking a Return Statement part d
JS Breaking a Return Statement part 3f
JS Accessing Arrays with Named Indexes part 1
JS Accessing Arrays with Named Indexes part 2
JS Objects - Undefined is Not Null
JS Performance - Reduce DOM Access