var value;
console.log(values);//undefined
console.log(message);//undefined
因为虽然这两种变量从技术角度看有本质的区别,但是实际上对哪个也操作不了,所以都是undefined
var value;
console.log(values);//undefined
console.log(message);//undefined
因为虽然这两种变量从技术角度看有本质的区别,但是实际上对哪个也操作不了,所以都是undefined