How does a FOR loop start in javascript?
for (i = 0; i <= 5; i++)
What will the following code return: Boolean(10 > 9)
true
How does a WHILE loop start?
while (i <= 10)
Inside which HTML element do we put the JavaScript?
<script> </script>
How can you detect the client’s browser name?
navigator.appName
What is the correct JavaScript syntax for opening a new window called “w2” ?
w2 = window.new(“http://www.w3schools.com”);
How to write an IF statement in JavaScript?
if (i == 5)
What is the correct syntax for referring to an external script called “index.js”?
<script> </script>