Skip to content

Instantly share code, notes, and snippets.

@koraytugay
Created August 15, 2021 00:24
Show Gist options
  • Save koraytugay/6db5768c5cc0b9b0dbb55fd85c605773 to your computer and use it in GitHub Desktop.
Save koraytugay/6db5768c5cc0b9b0dbb55fd85c605773 to your computer and use it in GitHub Desktop.
What is strict mode in JS?
Strict mode is an ES5 addition to JavaScript that changes the behavior of JavaScript engines so that errors are thrown instead of silently picked up.
The behavior of some language features is changed, and some unsafe language features are even completely banned.
One of the things that strict mode changes is that it disables arguments aliasing.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment