Computer >> Computer tutorials >  >> Programming >> Javascript

How to secure my JavaScript using Strict mode?


The “use strict” is a directive, which is a literal expression. It introduced in JavaScript 1.8.5. As the name suggests, “use strict” indicates that the code is to be executed in strict mode.

Let us declare strict mode. To declare, add the keyword “use strict” in the beginning. For global scope, declare it at the beginning of the script.

Example

Live Demo

<!DOCTYPE html>
<html>
   <body>
      <p>An error would come, since you have used a variable, but forgot to declare it</p>
      <p>Press F8 to see the error.</p>
      <script>
         "use strict";
          a = 1;
      </script>
   </body>
</html>

Output

An error would come, since you have used a variable, but forgot to declare it
Press F8 to see the error.