SMSamir Malikiniamsameer.hashnode.dev·Apr 16, 2025 · 3 min readNaming ConventionsGiving name to Variables and Functions is one of the most important tasks in coding , yet it doesn’t get the attention of many of us . It doesn’t affect out code’s efficiency , but it certainly makes our code more readable and easily understandable ....00
SMSamir Malikiniamsameer.hashnode.dev·Apr 11, 2025 · 3 min readVariables in JavaScriptA VARIABLE IS A " NAMED STORAGE " FOR DATA . Declaration :- In JavaScript variables can be declared using let const & var let and const were introduced in 2015 ( ES6 ) var : it is function ( if declared inside a function ) or Global scoped ( if ...00