InterviewSolution
Saved Bookmarks
| 1. |
Which character in JavaScript code will be interpreted as XML markup?(a) !(b) >(c) &(d) . |
|
Answer» Right option is (c) & To elaborate: If your JavaScript code contains the < or & characters, these characters are interpreted as XML markup. Element tags must begin with the < character, and entities and character references in an XML document must begin with the & character. |
|