InterviewSolution
Saved Bookmarks
| 1. |
The Crockford’s subset does not include which function in JavaScript?(a) eval()(b) coeval()(c) equal()(d) equivalent() |
|
Answer» Correct option is (a) eval() Explanation: The Crockford’s subset does not include the with and continue statements or the eval() function. It defines functions using function definition expressions only and does not include the function definition statement. |
|