数字+undefined=NaN;
var a=1;
a.s=2;a+a.s=NaN(计算失败显示NaN)
字符串+undefined=“字符串undefined”;
var a="sd";
a.s="sd";a+a.s="sdundefined"