in Frontend Tech

quick note on “use strict”

I just want to make a quick note on “use strict” in javascript.

Restrictions:

  1. won’t allow to create a global variables
  2. Illegal assignment throws an exception
  3. attempt to delete undeletable properties throws an exception
  4. all named properties must be unique
  5. function parameter names must be unique
  6. octal syntax is not permitted