search
HomeWeb Front-endJS TutorialJavaScript Variables and Data Types: Storing and manipulating data in JavaScript.

JavaScript Variables and Data Types: Storing and manipulating data in JavaScript.

JavaScript is a versatile programming language that powers the web, enabling developers to create interactive and dynamic websites. One of the core concepts in JavaScript, and in any programming language, is how data is stored and manipulated. To effectively build web applications, it's essential to understand variables and data types in JavaScript.

In this article, we'll cover what variables are, how to declare them, and the various data types that JavaScript supports for storing and manipulating data.


Variables in JavaScript

What is a Variable?

A variable in JavaScript is like a container that holds data. It allows you to store and retrieve values that you can use throughout your program. Think of variables as labels attached to values. Once you assign a value to a variable, you can refer to it by its name, rather than using the value directly every time.

For example, instead of writing "John" multiple times, you can assign it to a variable like this:


let name = "John";
console.log(name);  // Outputs: John


Declaring Variables

In JavaScript, variables can be declared using the var, let, or const keywords.

1. var

var is the oldest way of declaring variables in JavaScript. However, it has some issues with scope, which is why modern JavaScript developers prefer using let and const.


var age = 30;
console.log(age);  // Outputs: 30


2. let

let is block-scoped, meaning the variable exists only within the block it is defined in (e.g., inside a function or a loop). It is the most commonly used way to declare variables in modern JavaScript.


let city = "New York";
console.log(city);  // Outputs: New York


3. const

const is similar to let, but it is used to declare variables whose values will not change. Once a value is assigned to a variable declared with const, it cannot be re-assigned.


const country = "USA";
console.log(country);  // Outputs: USA

// This will throw an error
// country = "Canada";  


Naming Variables

When naming variables, keep the following rules in mind:

  • Variable names can contain letters, numbers, underscores (_), and dollar signs ($).
  • They must begin with a letter, underscore, or dollar sign.
  • Variable names are case-sensitive (e.g., myVar and myvar are different variables).
  • JavaScript keywords (e.g., var, let, if, function) cannot be used as variable names.

A common convention is to use camelCase for variable names, like myVariableName.


Data Types in JavaScript

JavaScript supports various data types that specify the kind of value a variable can hold. Data types are divided into two categories:

  • Primitive Data Types
  • Non-Primitive (Reference) Data Types

Primitive Data Types

Primitive data types are the most basic types of data in JavaScript. They include:

1. String

Strings are used to represent textual data. They are enclosed in quotes—either single ('), double (") or backticks (`).


let greeting = "Hello, World!";
let anotherGreeting = 'Hi there!';
console.log(greeting);  // Outputs: Hello, World!


2. Number

The number data type represents both integers and floating-point numbers (i.e., decimals).


let age = 25;       // Integer
let price = 99.99;  // Floating-point number


3. Boolean

Booleans represent logical values—true or false. They are often used in conditional statements and comparisons.


let isLoggedIn = true;
let hasAccess = false;


4. Undefined

When a variable is declared but not assigned a value, it is automatically initialized with the value undefined.


let myVar;
console.log(myVar);  // Outputs: undefined


5. Null

null represents an explicitly empty or non-existent value. It is used when you want to indicate that a variable should have no value.


let emptyValue = null;


6. Symbol

Symbols are unique and immutable values, typically used to create unique property keys for objects. While not commonly used by beginners, they are useful in advanced applications.


let symbol1 = Symbol("description");


7. BigInt

The BigInt type allows for the representation of whole numbers larger than the range of the Number type. It’s especially useful when working with very large integers.


let bigNumber = BigInt(123456789012345678901234567890);


Non-Primitive (Reference) Data Types

Non-primitive data types store more complex data structures and objects. They are known as reference types because variables store references to the actual data.

1. Object

Objects are collections of key-value pairs. They allow you to store multiple related values as properties.


let person = {
  name: "John",
  age: 30,
  isStudent: false
};
console.log(person.name);  // Outputs: John


2. Array

Arrays are ordered collections of values (elements). Arrays can store multiple values in a single variable, and the values can be of any data type.


let fruits = ["Apple", "Banana", "Cherry"];
console.log(fruits[1]);  // Outputs: Banana


3. Function

Functions are blocks of code designed to perform a particular task. In JavaScript, functions themselves are treated as objects, allowing them to be passed as arguments or stored in variables.


function greet() {
  console.log("Hello!");
}
greet();  // Outputs: Hello!



Type Coercion and Dynamic Typing

JavaScript is dynamically typed, which means you don’t need to explicitly declare the type of a variable. JavaScript will automatically infer the type based on the value assigned. For example:


let variable = "Hello";  // variable is of type string
variable = 42;           // variable is now of type number


In addition, JavaScript performs type coercion, which means it will automatically convert values from one type to another when necessary.


console.log("5" + 10);  // Outputs: "510" (String concatenation)
console.log("5" - 1);   // Outputs: 4 (Number subtraction)


In the first example, JavaScript coerces 10 to a string and concatenates it with "5". In the second example, "5" is coerced into a number for subtraction.


Conclusion

Understanding variables and data types is a fundamental step in learning JavaScript. Variables allow you to store and manage data in your programs, while data types define the kind of data you’re working with, from strings to numbers, booleans, and beyond.

As you continue learning JavaScript, you'll frequently use variables and work with various data types to build interactive and dynamic web applications. By mastering how to manipulate these data types, you’ll be able to write more efficient and effective code.

The above is the detailed content of JavaScript Variables and Data Types: Storing and manipulating data in JavaScript.. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Javascript Data Types : Is there any difference between Browser and NodeJs?Javascript Data Types : Is there any difference between Browser and NodeJs?May 14, 2025 am 12:15 AM

JavaScript core data types are consistent in browsers and Node.js, but are handled differently from the extra types. 1) The global object is window in the browser and global in Node.js. 2) Node.js' unique Buffer object, used to process binary data. 3) There are also differences in performance and time processing, and the code needs to be adjusted according to the environment.

JavaScript Comments: A Guide to Using // and /* */JavaScript Comments: A Guide to Using // and /* */May 13, 2025 pm 03:49 PM

JavaScriptusestwotypesofcomments:single-line(//)andmulti-line(//).1)Use//forquicknotesorsingle-lineexplanations.2)Use//forlongerexplanationsorcommentingoutblocksofcode.Commentsshouldexplainthe'why',notthe'what',andbeplacedabovetherelevantcodeforclari

Python vs. JavaScript: A Comparative Analysis for DevelopersPython vs. JavaScript: A Comparative Analysis for DevelopersMay 09, 2025 am 12:22 AM

The main difference between Python and JavaScript is the type system and application scenarios. 1. Python uses dynamic types, suitable for scientific computing and data analysis. 2. JavaScript adopts weak types and is widely used in front-end and full-stack development. The two have their own advantages in asynchronous programming and performance optimization, and should be decided according to project requirements when choosing.

Python vs. JavaScript: Choosing the Right Tool for the JobPython vs. JavaScript: Choosing the Right Tool for the JobMay 08, 2025 am 12:10 AM

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript: Understanding the Strengths of EachPython and JavaScript: Understanding the Strengths of EachMay 06, 2025 am 12:15 AM

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScript's Core: Is It Built on C or C  ?JavaScript's Core: Is It Built on C or C ?May 05, 2025 am 12:07 AM

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript Applications: From Front-End to Back-EndJavaScript Applications: From Front-End to Back-EndMay 04, 2025 am 12:12 AM

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools