InterviewSolution
Saved Bookmarks
| 1. |
What is strict mode? What are some of the advantages and disadvantages of using it? |
|
Answer» With the help of “Strict Mode,” users can write SECURE Javascripts easily. It changes bad syntax into real errors. It can be DECLARED by placing “use strict”; at the beginning of a function or script. Advantages
<script> function show() { |
|