Skip to content Skip to sidebar Skip to footer
Showing posts with the label Variable Declaration

Javascript Var Statement And Performance

Option1 : multiple var without assignment function MyFunction() { var a = null; var b = null; … Read more Javascript Var Statement And Performance

Redeclaring A Variable Using `let` Results In “uncaught Syntaxerror: Redeclaration Of Let …”

I have code like this: let accessAllowed; accessAllowed = (2>18) ? true : false; alert(accessAl… Read more Redeclaring A Variable Using `let` Results In “uncaught Syntaxerror: Redeclaration Of Let …”