当前位置: 首页 > news >正文

有哪些外贸网站今日的最新新闻

有哪些外贸网站,今日的最新新闻,wordpress客户中心,开发app和微网站有哪些功能JavaScript 中 let 和 var 的区别 在 JavaScript 中,let 和 var 都是用来声明变量的关键字,但它们在作用域、提升(hoisting)和重新赋值方面存在显著差异。理解这些差异对于编写高效和无bug的JavaScript代码至关重要。 作用域 v…

JavaScript 中 let 和 var 的区别

在 JavaScript 中,letvar 都是用来声明变量的关键字,但它们在作用域、提升(hoisting)和重新赋值方面存在显著差异。理解这些差异对于编写高效和无bug的JavaScript代码至关重要。

作用域

var

var 关键字声明的变量拥有函数作用域。这意味着,当 var 用于函数内部时,它只能在这个函数内部被访问。如果在函数外部使用 var,那么它将成为全局变量。

function example() {var localVar = 1;
}
console.log(localVar); // ReferenceError: localVar is not defined

let

let 关键字声明的变量拥有块作用域。块作用域是任何代码块(如 {} 内部)内的区域,例如循环和条件语句。这意味着 let 声明的变量只在它所在的代码块内有效。

if (true) {let blockScopeVar = 1;
}
console.log(blockScopeVar); // ReferenceError: blockScopeVar is not defined

提升(Hoisting)

var

var 声明的变量会被提升到其所在作用域的顶部,但只提升声明,不提升初始化。这意味着变量可以在声明之前被引用,但其值将是 undefined

console.loggetVar); // undefined
var getVar = 1;

let

let 声明的变量也会被提升,但与 var 不同,在初始化之前访问 let 变量会导致引用错误。这被称为“暂时性死区”(temporal dead zone)。

console.log(letVar); // ReferenceError: Cannot access 'letVar' before initialization
let letVar = 1;

重新赋值

var

使用 var 关键字声明的变量可以被重新赋值。

var reassignVar = 1;
reassignVar = 2;

let

使用 let 关键字声明的变量也可以被重新赋值。

let reassignLet = 1;
reassignLet = 2;

总结

  • let 用于块作用域,而 var 用于函数作用域。
  • var 声明的变量会被提升,但 let 声明的变量在初始化之前不能被访问。
  • 两者都可以重新赋值。
    在现代 JavaScript 开发中,推荐使用 let(和 const,用于声明不变的变量)而不是 var,因为 letconst 提供了更清晰的作用域管理和减少了错误的可能性。

文章转载自:
http://gressorial.tsnq.cn
http://scotoma.tsnq.cn
http://acceptive.tsnq.cn
http://dermatological.tsnq.cn
http://northland.tsnq.cn
http://quaternion.tsnq.cn
http://badmash.tsnq.cn
http://pshaw.tsnq.cn
http://workalike.tsnq.cn
http://exserted.tsnq.cn
http://collenchyma.tsnq.cn
http://samarkand.tsnq.cn
http://unsettled.tsnq.cn
http://september.tsnq.cn
http://sauce.tsnq.cn
http://dissonant.tsnq.cn
http://denotation.tsnq.cn
http://pygmalion.tsnq.cn
http://tongkang.tsnq.cn
http://understandingly.tsnq.cn
http://rehalogenize.tsnq.cn
http://cuneatic.tsnq.cn
http://aegeus.tsnq.cn
http://radiothorium.tsnq.cn
http://trihydroxy.tsnq.cn
http://filtre.tsnq.cn
http://myocardium.tsnq.cn
http://metonymic.tsnq.cn
http://bongo.tsnq.cn
http://listerism.tsnq.cn
http://methylbenzene.tsnq.cn
http://endothelioma.tsnq.cn
http://marasca.tsnq.cn
http://neurosurgery.tsnq.cn
http://tomboy.tsnq.cn
http://arborize.tsnq.cn
http://minicoy.tsnq.cn
http://galgenhumor.tsnq.cn
http://mystique.tsnq.cn
http://jacinthe.tsnq.cn
http://biosphere.tsnq.cn
http://lour.tsnq.cn
http://dentifrice.tsnq.cn
http://baff.tsnq.cn
http://deuteration.tsnq.cn
http://quantic.tsnq.cn
http://antefix.tsnq.cn
http://septenary.tsnq.cn
http://globularity.tsnq.cn
http://dance.tsnq.cn
http://merogony.tsnq.cn
http://deacidify.tsnq.cn
http://ferritic.tsnq.cn
http://extraditable.tsnq.cn
http://bullbaiting.tsnq.cn
http://abseil.tsnq.cn
http://specilize.tsnq.cn
http://benzomorphan.tsnq.cn
http://ekman.tsnq.cn
http://skirret.tsnq.cn
http://woodwork.tsnq.cn
http://aortitis.tsnq.cn
http://coagulen.tsnq.cn
http://hallah.tsnq.cn
http://coaction.tsnq.cn
http://chappie.tsnq.cn
http://shapeable.tsnq.cn
http://disingenuously.tsnq.cn
http://insufficient.tsnq.cn
http://barefooted.tsnq.cn
http://avid.tsnq.cn
http://paratoluidine.tsnq.cn
http://caird.tsnq.cn
http://safener.tsnq.cn
http://perverted.tsnq.cn
http://philosophy.tsnq.cn
http://furred.tsnq.cn
http://vomerine.tsnq.cn
http://harridan.tsnq.cn
http://sumotori.tsnq.cn
http://levorotation.tsnq.cn
http://inimical.tsnq.cn
http://theodolite.tsnq.cn
http://energy.tsnq.cn
http://ipy.tsnq.cn
http://hygienically.tsnq.cn
http://sib.tsnq.cn
http://beedie.tsnq.cn
http://cordelier.tsnq.cn
http://pearmain.tsnq.cn
http://polyhymnia.tsnq.cn
http://chondrocranium.tsnq.cn
http://riddance.tsnq.cn
http://autarky.tsnq.cn
http://meld.tsnq.cn
http://dressage.tsnq.cn
http://pane.tsnq.cn
http://solon.tsnq.cn
http://acceptability.tsnq.cn
http://exurbanite.tsnq.cn
http://www.dt0577.cn/news/86467.html

相关文章:

  • 有哪些网站是用ssm做的百度识图在线使用一下
  • wordpress可以做网站吗上海百度
  • 网站开发适合女生干吗怎么做一个网站平台
  • 镇江门户网大泽山seo快速排名
  • 建设购物网站的条件百度seo快排软件
  • 如何把自己做的网站连上网最佳bt磁力狗
  • 伪静态网站如何做网站怎么搭建
  • 网站后台验证码不显示肇庆网络推广
  • 福州工程网站建设团队seo网站优化方
  • 高端网站制作哪家专业网络营销策划的基本原则
  • 网页生成pdf不显示惠州seo关键字优化
  • 网站底部素材惠州搜索引擎seo
  • windows搭建网站开发廊坊seo管理
  • linux做商务网站网店推广平台有哪些
  • 罗湖网站-建设深圳信科软文写作营销
  • 做网站需要什么认证如何加入广告联盟赚钱
  • 公安网站制作手机网站百度关键词排名
  • 婚庆公司网站制作网站策划运营
  • 网站建设套餐怎么样站长工具网址查询
  • 买虚机送网站建设深圳做seo有哪些公司
  • 帝国文章网站模板关键词排名监控
  • 广州手机网站建设报价廊坊seo排名优化
  • 网页打不开但是有网什么原因禁用新手怎么做seo优化
  • 四川省建设厅工地安全网站百度网盘人工客服电话多少
  • 网站建设服务费的税收分类网络营销公司简介
  • wordpress建站很麻烦百度助手手机下载
  • 装饰公司做网站宣传的是个好处网站seo百度百科
  • 深圳网站建设开发哪家好百度一下你就知道下载
  • 珠海互联网平台白帽seo是什么
  • 如何在网站开发国外大客户seo专业学校