Posts by Rodolfo Gonçalves • 41 points
1 post
-
4
votes6
answers27772
viewsA: When, why and how to use the "use Strict" directive in Javascript?
"use Strict" is a directive where you are told that the compiler will not allow you to make faults in your code that are not considered errors by the interpreter, but may cause you headaches. For…