Javascript Essentials
Javascript Essentials
Which statement will return the value false?----var result = (20 === "20") && (50 <
30);
Multiple variables can be created and initialized in a single JavaScript
statement-----true
isNan function returns ______ if the argument is not a number otherwise it is
______-----true/false
Which of the following are not valid in JavaScript?-----"My name is "Harry" "
What is the value of C? var a = 100; var b = "10"; var c = a + b;-----10010
___________ is a pretest loop that will execute until the value of z equals 10----
while (z >10) { z--; }
____ allows you to loop through a block of code as long as the specified condition
is true.-----while
____ is used to exit a loop early.-----break