asdasd

var y, x;		//	y=undefined,x=undefined
y = 1;			//	y=1
y = typeof x;	//	y="undefined"
x = y;			//	x="undefined"

你可能感兴趣的:(html)