Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

React ES6 变量


变量

在 ES6 之前,只有一种定义变量的方式:使用 var 关键字。如果你没有定义它们,它们会被分配到全局对象。除非你处于严格模式,否则如果你的变量未定义,你会得到一个错误。

现在,使用 ES6,有三种定义变量的方式:varletconst

示例

var

var x = 5.6;

如果你在函数外部使用 var,它属于全局作用域。

如果你在函数内部使用 var,它属于该函数。

如果你在块内使用 var,例如 for 循环,则该变量在该块之外仍然可用。

var 具有函数作用域,而不是作用域。

示例

let

let x = 5.6;

letvar 的块作用域版本,并且仅限于其定义的块(或表达式)。

如果你在块内使用 let,例如 for 循环,则该变量仅在该循环内可用。

let 具有作用域。


w3schools CERTIFIED . 2022

获取认证!

完成 React 模块,完成练习,参加考试并成为 w3schools 认证专家!!

95 美元 报名

示例

const

const x = 5.6;

const 是一个变量,一旦创建,其值就不能更改。

const 具有作用域。

关键字 const 有点误导性。

它没有定义一个常量值。它定义了一个对值的常量引用。

因此,你不能

  • 重新分配常量值
  • 重新分配常量数组
  • 重新分配常量对象

    但你可以

  • 更改常量数组的元素
  • 更改常量对象的属性


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.