Yogendra Kumar V Ryogendrakumarvr.hashnode.devยทApr 26, 2023Why JavaScript is Like No Other Language: An Inside Look at its Weirdest FeaturesAvoid Creating Variables Using var console.log(varVariable) // undefined var varVariable = 10; console.log(varVariable) // 10 Variables created with var are hoisted meaning the declaration is moved to the top of their scope before code execution. In...100 readsJavaScriptAdd a thoughtful commentNo comments yetBe the first to start the conversation.