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

Declaring Vs Initializing A Variable?

I'm curious to know the difference between declaring a variable, and initializing a variable. e… Read more Declaring Vs Initializing A Variable?