今天注意到JavaScript里的一个特性:一个变量被重新声明后,其之前的赋值还是存在的。
var test ="test"; console.debug(test) ;//output: test var test; console.debug(test);// also output: test
今天注意到JavaScript里的一个特性:一个变量被重新声明后,其之前的赋值还是存在的。
var test ="test"; console.debug(test) ;//output: test var test; console.debug(test);// also output: test