Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
JavaScript and JSON Essentials

You're reading from   JavaScript and JSON Essentials If you fancy a less verbose data format than CSV or XML, then JSON could be for you. This tutorial will teach you about using JSON with JavaScript for effective local storage or Internet transfers.

Arrow left icon
Product type Paperback
Published in Oct 2013
Publisher Packt
ISBN-13 9781783286034
Length 120 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Sai S Sriparasa Sai S Sriparasa
Author Profile Icon Sai S Sriparasa
Sai S Sriparasa
Arrow right icon
View More author details
Toc

Variables in JavaScript


Now that we have built a Hello World program, let us take the next step and perform a few arithmetic operations on two numbers.

Note

The semi colon (;) is a statement terminator, it tellsthe JavaScript engine that a statement has ended.

Let us take a look at another program, alert_script.html:

The previous program would run and produce four pop-up windows, one after the other, displaying their respective values. A glaring problem here is that we are repetitively using the same numbers in multiple places. If we had to perform these arithmetic operations on a different set of numbers, we would have had to replace them at multiple locations. To avoid this situation, we would assign those numbers to temporary storage locations; these storage locations are often referred to as variables.

The keyword var is used to declare a variable in JavaScript, followed by the name of that variable. The name is then implicitly provided with a piece of computer memory, which we will use throughout the program execution. Let us take a quick look at how variables will make the earlier program more flexible:

Note

Code commenting can be done in two ways: one is single line, and the other is multiline.

Single line comments:

//This program would alert the sum of 5 and 3;
alert(5+3);

Multiline comments:

/* This program would generate two alerts, the first alert would display the sum of 5 and 3, and the second alert would display the difference of 5 and 3 */
alert(5+3);
alert(5-3);

Let us continue with the program:

Now let us alter the value from 5 to 6; the amount of change that we will make here is minimal. We assign the value of 6 to our variable a, and that takes care of the rest of the process; unlike our earlier script where changes were made in multiple locations. This is shown as follows:

Note

Code commenting is a recurring and an extremely important step in the development life cycle of any application. It has to be used to explain any assumptions and/or any dependencies that our code contains.

In JavaScript, we declare a variable by using the keyword var and until a value is assigned to it, the value of the variable will be implicitly set to undefined; that value is overwritten on variable initialization.

You have been reading a chapter from
JavaScript and JSON Essentials
Published in: Oct 2013
Publisher: Packt
ISBN-13: 9781783286034
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime