JavaScript Fundamentals Part-2
Check out JS Fundamentals Part-1 for better understanding!
Strict Mode
Strict mode can be activated in javascript by adding use strict; at the beginning of the javascript file. It allows us to understand errors properly.
let hasMoney = true;
if(hasmo...
tanishka.hashnode.dev3 min read