單項選擇題可插入多行注釋的 JavaScript 語法是?()

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


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題如何在 JavaScript 中添加注釋?()

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

2.單項選擇題for 循環(huán)如何開始?()

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

3.單項選擇題在 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)

4.單項選擇題如何編寫當(dāng)i不等于5時執(zhí)行一些語句的條件語句?()

A. if =! 5 then 
B. if <>5 
C. if (i <> 5) 
D. if (i != 5) 

5.單項選擇題如何編寫當(dāng)i等于5時執(zhí)行一些語句的條件語句?()

A. if (i==5) 
B. if i=5 then 
C. if i=5 
D. if i==5 then