Aswin Bennyaswinbenny.hashnode.devยทSep 26, 20231. VariablesDeclare let name='Aswin'; var number=2; const pi=3.14; // usage of variables console.log(name); console.log(`${number*number}`); var vs let vs const Featurevarletconst Block ScopeNo (function scope)Yes (block scope)Yes (block scope) Hoistin...Javascript EssentialsJavaScriptAdd a thoughtful commentNo comments yetBe the first to start the conversation.