0
這兩條語句有什麼區別?JavaScript中的「typeof str」和「typeof(str)」有什麼區別?
if (typeof errorMessage !== undefined)
{}
和
if (typeof (errorMessage) !== undefined)
{}
這兩條語句有什麼區別?JavaScript中的「typeof str」和「typeof(str)」有什麼區別?
if (typeof errorMessage !== undefined)
{}
和
if (typeof (errorMessage) !== undefined)
{}
其中之一具有一對完全多餘括號。
typeof foo
和typeof (foo)
之間的差異與1 + 1
和(1) + (1)
之間的差異相同。
的旁白,該typeof
操作會給您一個字符串,所以你應該比較"undefined"
不undefined
。
當你尋求幫助時,你不會很快說出來。 – 2013-05-14 06:24:08
他們是一樣的 – 2013-05-14 06:24:51
不是一個有效的問題... !!!! – 2013-05-14 06:25:16