Hello,
is there a good solution how can i define more than one var with the same value in one step an the beginning of my funcion?
function myFunction (){
var a,b = 0;
document.write(a) // undefined
document.write(b) // 0
}
Is there a good way to write this like var a,b = 0; ?