Defining and Naming Variables
Creating & Naming Variables
Learn how to create and name variables in JavaScript. Learn what variable names are valid.
Here's what we'll be going over
- Creating a Variable
- Difference between let and var
- Naming Variables
Creating a Variable
We create a variable with the let keyword. We write let and then the variable name we want afterward. We give it the value we want using =, just like a line from algebra.
let number = 10; |
The variable number now has the value 10.
Note that we add a semicolon at the end. This isn’t required, but it is highly recommended and most code you see in the wild will use semicolons. There are rare cases where not using semicolons can lead to an error. We’ll use them consistently throughout this course. They should be used at the end of every statement, which effectively means at the end of every line.
We can also use the var keyword to declare a variable. It does essentially the same thing but behaves a little differently, sometimes in unexpected ways. let was added to the language in 2015.
var number = 10; |
We’ll stick with let in this lesson as it’s now the industry standard.
Difference between let and var
let
Scoping
block-scoped
- let Declarations are not hoisted
- let does not allow re-declaration.
- let declarations are not initialized.
- let is commonly used in loops to avoid the common closure problem
using a let variable before it's declared results in a ReferenceError
var
Scoping
function-scoped
- var Declarations are hoisted
- var allows re-declaration of the same variable name
- var declarations are automatically initialized with undefined
- var can lead to unexpected behavior.
Using a var variable before it's declared results in undefined
Naming Variables
A variable name must follow these rules:
- Variable names must begin with a letter, $, or _
- Variable names can contain letters, numbers, _, and $
- Variables are case sensitive - number is different from Number
- Reserved JavaScript keywords (such as let and var) cannot be used as variable names
As long as we follow these rules, we can name a variable whatever we like. The following are valid JavaScript variable names.
Feel free to run this code and try out different variable names. If all variable names are valid, we’ll see the word “Succeeded” pop up when we run it. If one or more variables are invalid, we’ll see an error.
let x = 17; let XYZ = 20; let $ = 40; let _ = 88; let $_$_$_ = 100; let Ab90$___a789 = 119; |
Fun Game JS
Assalam u Alaikum! I'm Muhammad Usman Ghias. This course is beginners friendly and covers till JavaScript Advanced. Learning JavaScript is an essential skill for any aspiring web developer. Mastering this language will enable you to create dynamic and interactive web applications.
You can Contribute us, so we can provide a lot of free courses. Support
🌎 Find Me Here:
My Courses: https://courses.codcrafters.com
Ask Queries: https://www.codcrafters.com/forum/Islam-17
Course Blogs: https://blogs.codcrafters.com
Courses News: https://news.codcrafters.com
YouTube: https://www.youtube.com/@codcrafters