var mynum=8;
document.write(mynum); 在8的那里为什么不加双引号,而var mychar; mychar="hello" hello加双引号
不加双引号的8表示数字,加了双引号的表示字符串。