1
Ecmascript 6 brings the resources let
and const
, that prevent variables from being redeclared and overwritten unintentionally, and limit the scope of the variables created.
The question is: with these changes of this new version it is still useful to use the directive use strict
at the beginning of scripts?