You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Strict Mode is a way to opt into a restricted version of javascript. It prevents you from doing things that are error-prone or poorly supported, and throws more errors when you write bad code.
4
+
- Must appear at the top of a script or function
5
+
- Applies only to the code in that scope (global or function)
0 commit comments