最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Is it possible to delete a variable declared using const? - Stack Overflow

programmeradmin1浏览0评论

Given

const localName = "local_name";
delete localName; // true
console.log(localName); // "local_name"

Is it possible to delete a variable declared using const?

Given

const localName = "local_name";
delete localName; // true
console.log(localName); // "local_name"

Is it possible to delete a variable declared using const?

Share Improve this question asked Feb 23, 2017 at 18:59 guest271314guest271314 102k15 gold badges117 silver badges186 bronze badges 3
  • 1 Nö its not possible do delete or redefine a constant inside the constants scope – cyr_x Commented Feb 23, 2017 at 19:02
  • 3 From stackoverflow./questions/1596782/…: "The point is the delete operator removes a property from an object. It cannot remove a variable." So the answer is no (independently of whether const, var or let was used). – Felix Kling Commented Feb 23, 2017 at 19:02
  • 1 perfectionkills./understanding-delete – Bergi Commented Oct 11, 2017 at 17:17
Add a ment  | 

1 Answer 1

Reset to default 9

delete is used to delete properties from an object.

delete foo;

will try to delete the property foo from the global object. Declared variables can never be removed with delete (no matter if you use const, let or var), and there is no other way to remove a "variable" (binding) (see @T.J.'s ment for some more details).

Related: How to unset a JavaScript variable?

发布评论

评论列表(0)

  1. 暂无评论