typeof 用法
慕標8001392
2018-04-17 23:06:28
TA貢獻3條經驗 獲得超15個贊
檢查數據類型 ,也可用作if條件中變量是否初始化的判斷
if(typeof obj != udefined){
????? return “ 這個對象存在” ;
}
舉報