hi Do you know the difference in JavaScript between these variables declarations : – myVar = “foo” – var myVarVar = “foo” In fact, the first one will have an unlimited scope, and thus accessible from the outer world, whereas the second one will only be accessible at this level and below. As such, this [...]

