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. 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. 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. Output: Here, an error occurs as we use duplicate elements. ![]()
Next TopicJavaScript Promise
|
JavaTpoint offers too many high quality services. Mail us on h[email protected], to get more information about given services.
JavaTpoint offers college campus training on Core Java, Advance Java, .Net, Android, Hadoop, PHP, Web Technology and Python. Please mail your requirement at [email protected].
Duration: 1 week to 2 week