單項選擇題

以下哪個結果是正確的?()
var a=100,b="100.56",c="80";
alert(Math.max(a , b ,c));

A.100
B.100.56
C.NaN
D.80


您可能感興趣的試卷

你可能感興趣的試題

2.單項選擇題有一個變量var a=(100+50)+undefined+NaN,以下哪個是alert(a)的結果?()

A.150undefinedNaN
B.NaN
C.150undefined
D.10050undefinedNaN

4.單項選擇題

以下代碼正確的運行結果是?()
var arr=[0,1,2,3,4,5,6];
arr2 = arr.slice(2,5);
alert(arr2);

A.1,2,3
B.1,2,3,4
C.2,3,4
D.2,3,4,5

5.單項選擇題以下哪個語句能正確彈出結果:()

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. 以上三個結果都正確