C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
JavaScript Strict ModeBeing a scripting language, sometimes the JavaScript code displays the correct result even it has some errors. To overcome this problem we can use the JavaScript strict mode. The JavaScript provides "use strict"; expression to enable the strict mode. If there is any silent error or mistake in the code, it throws an error. Note - The "use strict"; expression can only be placed as the first statement in a script or in a function.JavaScript use strict ExampleExample 1Let's see the example without using strict mode. <script> x=10; console.log(x); </script> Output: Here, we didn't provide the type of variable. Still we are getting an output. Let's see the same example by enabling the strict mode. <script> "use strict"; x=10; console.log(x); </script> Output: Now, it will throw an error as the type of x is not defined. Example 2Let's see one more example to print sum of two numbers. <script> console.log(sum(10,20)); function sum(a,a) { "use strict"; return a+a; } </script> Output: Here, an error occurs as we use duplicate elements.
Next TopicJavaScript Promise
|