在 JavaScript 中使用常量有什么意义?
JavaScript 中使用常量的含义是什么?var
和 const
做几乎相同的事情,但 const
是不可更改的。 这有什么意义以及什么情况下会使用 const
?
What is the meaning of using a constant in JavaScript?var
and const
do almost the same thing but const
is unchangable.
What is the point of that and what situation would use const
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜这样做的好处是你可以确保你的常数值永远不会改变。
这也可能有助于 Javascript 引擎优化一些东西,具体取决于它的实现。
但请注意,根据 此页面(MDN 中的 const) :
因此,使用 const 可能不是一个好主意。
I'm guessing the advantage is that you'll be sure your constant's value doesn't change, ever.
Which might also help the Javascript engine optimize things a bit, depending on its implementation.
Note though that, according to this page (const in MDN) :
So, using
const
is probably not that much of a good idea.