#programming-languages
Read more stories on Hashnode
Articles with this tag
In this episode, we will discuss the 'const' keyword. Later on, we'll explore the different data types present in JavaScript and delve into the...
The scoping behavior is one of the major differences between the 'let' and 'var' keywords. But we will discuss this difference later on. In this...
Variables are used to store different types of data like numbers, text, strings or more complex structures. Much like containers at home where you...
The var keyword in JavaScript is used to declare variables. It was introduced before ES2015. But with ES6 (ES2015), let and const were introduced to...