What is JavaScript’s strict mode?
30 December 2022 (Updated 31 December 2022)
On this page
In a nutshell
Strict mode in JavaScript makes several changes:
- Throws errors for otherwise silent JavaScript errors.
- Fixes mistakes that otherwise make it difficult for JavaScript engines to optimize code. As a result, strict mode can sometimes be more faster than non-strict mode.
- Prohibits syntax that’s likely to be used in future ECMAScript versions.
Changes introduced in strict mode
No assignment to undeclared variables
In non-strict mode, the below code wouldn’t throw any errors.
Throws errors if object property assignment fails
In non-strict mode, the below code wouldn’t throw any errors.
this
never refers to globalThis
In sloppy mode (non-strict mode), if this
is not specified, it will refer to the global context. In strict mode, it’ll be undefined
.
Throws error if deleting an object property fails
In non-strict mode, the below code wouldn’t throw any errors.
eval
doesn’t introduce new variables into the surrounding scope
No duplicate parameter names
No setting properties on primitive values
More reserved keywords
The following words can’t be used as variable names:
implements
interface
let
package
private
protected
public
static
yield
How to invoke strict mode
Scripts
Functions
Other notes
- Strict mode is enabled by default for JavaScript modules or classes.
Tagged:
JavaScript
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment