Coding Ninjas Logo

Home > JavaScript Questions > What is the ‘Strict’ mode in JavaScript and how can it be enabled?

What is the ‘Strict’ mode in JavaScript and how can it be enabled?


Answer:

Strict mode is a way to introduce better error-checking into your code.


Example:

Declared inside a function, it has local scope (only the code inside the function is in strict mode):

x = 3.14;
// This will not cause an error as variable x is not defined and the code is not in strict mode.
myFunction();
function myFunction() {
"use strict";
y = 3.14;
// This will cause an error beacause variable y is not defined and we are using strict mode
}

from the above code, you can understand strict mode.


Similar Questions