Variables and Data Types in JavaScript
Variables are the basic building blocks of any programming language, and JavaScript is no exception. In JavaScript, variables allow you to store data and use it in your code. There are a few different ways to declare variables in JavaScript, but the most common way is using the var
keyword.
Variables in JavaScript
Here is an example of declaring a variable in JavaScript:
1 | var name = 'John Doe'; |
In this example, we declared a variable called name
and assigned it the value 'John Doe'
. You can also declare multiple variables at once, like this:
1 | var name = 'John Doe', age = 30; |
It’s important to note that in recent versions of JavaScript, the var
keyword has been replaced by let
and const
. The let
keyword is used to declare variables that can be reassigned, while the const
keyword is used to declare variables that cannot be reassigned. Here is an example of using let
and const
to declare variables:
1 2 3 4 5 | let name = 'John Doe'; name = 'Jane Doe'; // valid const age = 30; age = 31; // error |
In this example, we declared a variable name
using the let
keyword and assigned it the value 'John Doe'
. We then reassigned the name
variable to 'Jane Doe'
, which is valid. On the other hand, we declared a variable age
using the const
keyword and assigned it the value 30
. Attempting to reassign the age
variable results in an error, as the value of a const
variable cannot be changed.
Data Types in JavaScript
Now that we’ve covered the basics of declaring variables, let’s look at data types in JavaScript. JavaScript is a dynamically typed language, which means that the data type of a variable can change at runtime. However, JavaScript does have a few basic data types that are used to represent different kinds of data. Here are the most commonly used data types in JavaScript:
String
: Used to represent a sequence of characters, such as a word or a sentence. Strings are declared using single or double quotes, like this:'Hello, world!'
or"Hello, world!"
.Number
: Used to represent numbers. Numbers in JavaScript can be integers or floating-point numbers. There is only oneNumber
data type in JavaScript, and it can represent both integers and floating-point numbers. Here is an example of declaring a number in JavaScript:const age = 30;
.Boolean
: Used to represent the valuestrue
orfalse
. Booleans are often used in conditional statements to control the flow of execution. Here is an example of declaring a boolean in JavaScript:const isMarried = false;
.Null
: Used to represent a deliberate non-value.Null
is often used to represent an unknown or undefined value. Here is an example of declaring anull
value in JavaScript:const car = null;
.Undefined
: Used to represent a value that has not been assigned. In JavaScript, variables declared without an initial value are automatically assigned the valueundefined
. Here is an example of declaring an undefined value in JavaScript:let name;
.Object
: Used to represent complex data structures, such as arrays, maps, and sets. In JavaScript, objects are defined using curly braces, and properties are defined using key-value pairs.
That’s it for today.
Thank you for reading. Happy Coding..!! 🙂