JavaScript Use Strict

Published: 01 January 1970
on channel: Bhanu Prathap
16
0

More about use strict:
https://johnresig.com/blog/ecmascript...

"use strict"; Defines that JavaScript code should be executed in "strict mode".

The "use strict" directive was new in ECMAScript version 5.

It is not a statement, but a literal expression, ignored by earlier versions of JavaScript.

The purpose of "use strict" is to indicate that the code should be executed in "strict mode".

With strict mode, you can not, for example, use undeclared variables.

Strict mode is declared by adding "use strict"; to the beginning of a script or a function.

Declared at the beginning of a script, it has global scope (all code in the script will execute in strict mode)

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

Reference blog:
https://js.plainenglish.io/what-is-st...


Watch video JavaScript Use Strict online without registration, duration hours minute second in high quality. This video was added by user Bhanu Prathap 01 January 1970, don't forget to share it with your friends and acquaintances, it has been viewed on our site 1 once and liked it people.