InterviewSolution
Saved Bookmarks
| 1. |
The escape sequence ‘\f’ stands for _________(a) Floating numbers(b) Representation of functions that returns a value(c) \f is not present in JavaScript(d) Form feedThe question was asked in my homework.My enquiry is from Types, Values and Variables topic in section Lexical Structures of JavaScript |
|
Answer» CORRECT option is (d) FORM feed To elaborate: \f is the JavaScript escape SEQUENCE that stands for Form feed (\u000C). It skips to the start of the NEXT page. (APPLIES mostly to terminals where the output device is a printer rather than a VDU). |
|