do you need use strict in 2020 code example
Example: Turn on modern JS by adding use strict to your script
// Non-strict code...
(function(){
"use strict";
// Define your library strictly...
})();
// Non-strict code...
// Non-strict code...
(function(){
"use strict";
// Define your library strictly...
})();
// Non-strict code...