Javascript Puzzle

12345678910
Across
  1. 4. ___________ is derived from JavaScript.
  2. 7. To declare a variable, use this keyword.
  3. 8. Both while and if statements use __________ tests.
  4. 9. JavaScript allows us to add ______________ behaviour to the web page.
  5. 10. If you type the following code in the console window, what result will you get? 3 > 2 > 1 === false;
Down
  1. 1. The first ever JavaScript was created by _________________.
  2. 2. If you don’t initialize a variable, the value is __________.
  3. 3. All javascript statements end with a ____________.
  4. 5. OR (||) and AND (&&) are ___________ operators.
  5. 6. To get input from a user, you can use the _________ function.