Dec 7, 2024 · 5 min read · Hey folks, variables are used in every programming language for storing different values and making our tasks easy. They are like containers that can store values of different types. There are some naming conventions we must follow when declaring our...
ASAbhinandan and 1 more commented
Mar 10, 2024 · 2 min read · Variables: Hey, let us begin our JAVASCRIPT journey. The concept of variable is same in js with the other language. Variables are containers for storing information that can be referenced and manipulated within a program. In JAVASCRIPT variable can b...
Join discussionJun 23, 2023 · 3 min read · Scope and variable declaration are fundamental concepts in JavaScript that determine how variables are accessed and where they are visible within a program. In JavaScript, variables can be declared using different keywords such as var, let, and const...
Join discussion