Is there a solution I can use that allows me to define more than one var with the same value in one step at the beginning of my function?
function myFunction () {
var a,b = 0;
document.write(a)
document.write(b)
}
Is there an improved recording method a,b = 0;?
source
share