單項(xiàng)選擇題如何求得2和4中最大的數(shù)?()

A. Math.ceil(2,4) 
B. Math.max(2,4) 
C. ceil(2,4) 
D. top(2,4)


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題如何把 7.25 四舍五入為最接近的整數(shù)?()

A. round(7.25) 
B. rnd(7.25) 
C. Math.rnd(7.25) 
D. Math.round(7.25)

2.單項(xiàng)選擇題可插入多行注釋的 JavaScript 語(yǔ)法是?()

A. /*This comment has more than one line*/ 
B. //This comment has more than one line// 
C. <!--This comment has more than one line-->

3.單項(xiàng)選擇題如何在 JavaScript 中添加注釋?()

A. ' This is a comment 
B. <!--This is a comment--> 
C. //This is a comment 

4.單項(xiàng)選擇題for 循環(huán)如何開(kāi)始?()

A. for (i <= 5; i++) 
B. for (i = 0; i <= 5; i++) 
C. for (i = 0; i <= 5) 
D. for i = 1 to 5

5.單項(xiàng)選擇題在 JavaScript 中,有多少種不同類型的循環(huán)?()

A. 兩種,for 循環(huán)和 while 循環(huán) 
B. 四種,for 循環(huán)、while 循環(huán)、do...while 循環(huán)以及 loop...until 循環(huán)
C. 一種,for 循環(huán)