JavaScript Variables

As in other programming languages JavaScript also uses equal to = operator to assign the value to the left side variable.

Example
x = 10;

It will assign value 10 to the variable x.

In JavaScript you can use var keyword to declare the variable.

Example
var x;
var y;

x = 10;
y = x;

Above example shows 2 variables x and y.

x is assigned value 10. Then y is assigned value equal to x.

JavaScript is a case sensitive language so variable names are also case sensitive. If you are declaring variables as var x, var X then both variables are totally different.

JavaScript + OperatorOperator in JavaScript is used for 2 purposes, one for arithmetic operation of addition and second for string concatenation.

JavaScript + Operator Addition Example

var x;
var y;
var z;

x = 10;
y = 20;
z = x + y;

Above JavaScript, after execution will set the value of z = 30.

If you will use quotes to set the values for variables, then + operator will work as string concatenation.

Example
var x;
var y;
var z;

x = "10";
y = "20";
z = x + y;

This JavaScript code will generate the result z = 1020.

Another example of string concatenation in JavaScript:

var str1 = "Learn Programming ";
var str2 = "in JavaScript";
var msg = str1 + str2;

It will concatenate the 2 strings to generate the output as Learn Programming in JavaScript.

If you want to concatenate any other string without variable, then can you do it like this:

var msg = str1 + str2 + " with QuickStart Tutorials."

No comments yet.

Leave a Comment

All fields are required. Your email address will not be published.

Recent JavaScript Tutorials

JavaScript if-else Ternary Operator

The JavaScript conditional ternary operator is considered as shorthand for if-else statement that is frequently used to return the result in single code statement. It takes three operands to return ...

JavaScript do…while Loop

do...while loop in JavaScript works like while loop in JavaScript the only difference is that do block executes at least once before while loop’s test condition. That’s why do block ...

JavaScript while Loop

while loop in JavaScript works same like for loop in JavaScript but in a little bit different manner. while loop runs until the condition is true and exits when the ...

JavaScript for Loop

for loop in JavaScript is most often used to execute a block of code with different value each time. So, to reduce the code length instead of adding number of ...

JavaScript switch-case Statement

To execute a single block of code satisfying a condition in case statement of JavaScript switch-case is used. break keyword is used in every case statement to exit the switch ...

Recent Comments