Home Web Front-end Front-end Q&A What are the differences between JavaScript constants and variables?

What are the differences between JavaScript constants and variables?

Apr 01, 2021 pm 05:18 PM
javascript variable constant

Difference: Variables can be redeclared and reassigned; while constants cannot be changed once declared and cannot be redeclared or reassigned. Variables can be declared without assignment, and the return value is undefined; constant declarations must be assigned a value.

What are the differences between JavaScript constants and variables?

The operating environment of this tutorial: Windows 7 system, ECMAScript version 5, Dell G3 computer.

Variables and constants in JavaScript:

Variables

Variables are used to store data The container can change or be assigned again during the running of the program.

We can use the var keyword to declare variables, and the value of the variable can be of any type. For better reading, it is recommended to use camel case naming for variables:

var myName="zhangpeiyue";//myName为变量
Copy after login

In ES6, there is a new let keyword to declare variables. Its function is similar to var, except that the declared variables are only valid in the area where they are located:

let str="es6";//str为变量
Copy after login

Constant

Constant classification:

1. Integer constant

  • Binary (0b Beginning; e.g. 0b1001,0b1010)

  • Decimal (9,-10,0) Octal (beginning with 0; e.g. 011, 012)

  • Hexadecimal (starting with 0x; 0x10, 0x11)

2, real constant

  • Decimal (3.14, 9.8)

3. String constants

  • Use one or more characters enclosed in single quotes (') or double quotes (")

4. Boolean value

  • Boolean constants have only two states: true or false. Special characters

In ES6, const is newly added to define constants:

Constants, like variables, are containers used to store data, but the value of the constant cannot be changed during the running of the program. .

It is recommended that constants be named in all capital letters. If they consist of multiple words, they can be separated by underscores:

//NUM只能在初始化的时候被赋值,赋值以后不允许被再次赋值。
const NUM=12;//NUM是常量,
Copy after login

The difference between JavaScript constants and variables

Variables:

  • can be redeclared;

  • can be reassigned;

  • has variables Name in advance

  • can only be declared, without assignment, the return value is undefined;

  • No declaration, direct assignment uses global variables;

  • If it is used directly without declaration or assignment, an error will be reported;

  • Variables can be declared multiple times at the same time;

Constant:

  • A quantity that cannot be changed once declared;

  • The declaration must be assigned a value;

  • Cannot be reassigned;

  • Cannot be redeclared;

  • It is customary to use uppercase identifiers; (js is case sensitive)

  • No declaration in advance;

For more programming-related knowledge, please visit: Programming Video!!

The above is the detailed content of What are the differences between JavaScript constants and variables?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

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 Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

What are instance variables in Java What are instance variables in Java Feb 19, 2024 pm 07:55 PM

Instance variables in Java refer to variables defined in the class, not in the method or constructor. Instance variables are also called member variables. Each instance of a class has its own copy of the instance variable. Instance variables are initialized during object creation, and their state is saved and maintained throughout the object's lifetime. Instance variable definitions are usually placed at the top of the class and can be declared with any access modifier, which can be public, private, protected, or the default access modifier. It depends on what we want this to be

Mind map of Python syntax: in-depth understanding of code structure Mind map of Python syntax: in-depth understanding of code structure Feb 21, 2024 am 09:00 AM

Python is widely used in a wide range of fields with its simple and easy-to-read syntax. It is crucial to master the basic structure of Python syntax, both to improve programming efficiency and to gain a deep understanding of how the code works. To this end, this article provides a comprehensive mind map detailing various aspects of Python syntax. Variables and Data Types Variables are containers used to store data in Python. The mind map shows common Python data types, including integers, floating point numbers, strings, Boolean values, and lists. Each data type has its own characteristics and operation methods. Operators Operators are used to perform various operations on data types. The mind map covers the different operator types in Python, such as arithmetic operators, ratio

How to get variables from PHP method using Ajax? How to get variables from PHP method using Ajax? Mar 09, 2024 pm 05:36 PM

Using Ajax to obtain variables from PHP methods is a common scenario in web development. Through Ajax, the page can be dynamically obtained without refreshing the data. In this article, we will introduce how to use Ajax to get variables from PHP methods, and provide specific code examples. First, we need to write a PHP file to handle the Ajax request and return the required variables. Here is sample code for a simple PHP file getData.php:

jQuery usage practice: several ways to determine whether a variable is empty jQuery usage practice: several ways to determine whether a variable is empty Feb 27, 2024 pm 04:12 PM

jQuery is a JavaScript library widely used in web development. It provides many simple and convenient methods to operate web page elements and handle events. In actual development, we often encounter situations where we need to determine whether a variable is empty. This article will introduce several common methods of using jQuery to determine whether a variable is empty, and attach specific code examples. Method 1: Use the if statement to determine varstr="";if(str){co

Deep understanding of const in C language Deep understanding of const in C language Feb 18, 2024 pm 12:56 PM

Detailed explanation and code examples of const in C In C language, the const keyword is used to define constants, which means that the value of the variable cannot be modified during program execution. The const keyword can be used to modify variables, function parameters, and function return values. This article will provide a detailed analysis of the use of the const keyword in C language and provide specific code examples. const modified variable When const is used to modify a variable, it means that the variable is a read-only variable and cannot be modified once it is assigned a value. For example: constint

See all articles