As we all know we type in these 2 lines in VBScript anytime , alltime tbh:)
Option Explicit On' Declaring Variables strictly
On Error Resume Next ' If error comes, chuck it , go to next line
What is the equivalent for that in Javascript ?
Well I do know
"use strict";
forces variable declaration but for second line , what is the equivalent ?