首頁 > 問答 > 主體
function test(){ return (+{}+[])[1]; //返回a }
有如上一段js程式碼,想知道的是為什麼回傳值是"a"?
"a"
阿神2017-05-19 10:42:20
+{}=NaN,NaN+[]="NaN","NaN"[1]=a