InterviewSolution
Saved Bookmarks
| 1. |
Why do we utilize the “use strict”; statement? |
|
Answer» The ‘USE strict’ statement sets a few restrictions in the SCRIPT. Typically, it is utilized to facilitate the strict mode of the script, making sure there could be no loose coupling LIKE UNDECLARED variables. |
|