I am currently learning JavaScript and I would like to ask if it is really necessary/advisable to do 'use strict' in all of my JavaSript functions? In line with this, will it improve the overall quality of my code?
Here are points that hinders me in using 'use strict':
- I think it's too repetitive to do 'use strict' all the time
- Wouldn't it just hinder my productivity? or is it just a matter of getting used to?
- Lastly, codes I see online does not use it. Meaning, converting those codes to a code that 'use strict' will allow would probably waste a portion of my time.
Is 'use strict' still relevant?