10 lines
385 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
Even though it may be a good practice to enforce JavaScript strict mode, doing so could result in unexpected behaviors on browsers that do not support it yet. Using this feature should therefore be done with caution and with full knowledge of the potential consequences on browsers that do not support it.
== Noncompliant Code Example
----
function strict() {
'use strict';
}
----