Skip to content Skip to sidebar Skip to footer
Showing posts with the label Use Strict

How To Set 'use Strict' Globally With Jslint

I'm new to javascript and am trying to validate through JSLint. Where should I put 'use st… Read more How To Set 'use Strict' Globally With Jslint

"use Strict" Inheritance / Scope

//Global Scope 'use strict'; //1 function A() { 'use strict'; //2 function … Read more "use Strict" Inheritance / Scope