Felipe Nascimento de Moura (2014-12-16T13:50:58.000Z)
d at domenic.me (2015-01-05T20:37:08.243Z)
Interesting question! I always found it weird, myself! ```js function () { "use strict"; } ``` It might be a new token, perhaps? ```js function () { use strict, safe; } ``` This could allow us to even add some extra scoped-options, such as a safe mode...I am pretty sure you guys would have even more options in mind, either to constrain, or to liberate access or features! An interesting example for that use, would be the way browsers are implementing the use of es6 and the way you enable it in each browser! We could use something like (for the future features, as well): ```js function () { use strict, experimental; // allows the use of experimental features } function () { use strict, unstable; // allows the use of features that are soon going to be official } ```