11. 在 JavaScript 中,有多少种不同类型的循环?
你的回答: 四种。for 循环、while 循环、do...while 循环以及 loop...until 循环。
回答错误!
正确答案:三种。for 循环、do...while 循环和 while 循环。
19. 如何在浏览器的状态栏放入一条消息?
你的回答: window.status("put your message here")
回答错误!
正确答案:window.status = "put your message here"