Question: Question 17) JavaScript is case-insensitive. Therefore, the following statements will both work: document.write( Hello); // statement 1 DOCUMENT.WRITE(Hello); // statement 2 True False Flag this
Question 17)
JavaScript is case-insensitive. Therefore, the following statements will both work: document.write( "Hello"); // statement 1 DOCUMENT.WRITE("Hello"); // statement 2
| True |
| False |
Flag this Question
Question 18)
Since JavaScript only executes inside browsers, you can actually embed HTML tags in your script like this: document.write( "This is bold" );
| True |
| False |
Flag this Question
Question 19)
These browsers, Chrome, Internet Exlorer, Firefox, and Safari, offer a way to find and report JavaScript syntax errors.
| True |
| False |
Question 20)
Given the following JavaScript code, inside script tags, what will be stored in a at the end?
var a = 10; var b = 11; a *= b - 1;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
