

InterviewSolution
Saved Bookmarks
1. |
__________ returns the JavaScript representation in the form of a string literal.(a) toStringJava()(b) toString()(c) String()(d) none of the mentioned |
Answer» Right option is (b) toString() To explain I would say: In previous versions, toString() returns the hexadecimal string representation, which as of version 2.2 can be retrieved by the str property. |
|