Scopes of the var and let Keywords var i = 'global scope' function checkScope() { let i = 'function scope'; console.log(i); // function scope ...
Comment // In-line comment /* Multi-line comment */ Data types JavaScript provides eight different data types which are undefined, null, boolean,...