A. alert(new Date(2011 , 12 , 25).getDay()); B. alert(new Date(2011 , 12 , 25 , 5).getDay()); C. alert(new Date(2011 , 12 , 25 , 5 , 5 , 9).getDay()); D. 以上三個結果都正確
以下哪個結果是正確的?() var a=100 ,b="100.5a6", c="100.1"; alert(Math.max(a , b ,c));
A.100 B.100.1 C.NaN D.undefined
以下代碼,哪個結果是正確的?() var str='123abc'; str += str.replace('abc' , ''); alert(str);
A.123abc123 B.123abc C.123 D.abc