JS Coding Questions Logo
JS Coding Questions
#68💼 Interview

Why do you need strict mode

Advertisement

728x90

Strict mode is useful to write "secure" JavaScript by notifying "bad syntax" into real errors. For example, it eliminates accidentally creating a global variable by throwing an error and also throws an error for assignment to a non-writable property, a getter-only property, a non-existing property, a non-existing variable, or a non-existing object.

Advertisement

Responsive Ad
🎯 Practice NowRelated Challenge

JavaScript Coding Exercise 69

Test your knowledge with this interactive coding challenge.

Start Coding

Advertisement

728x90
68of476