Is there a Set literal in JavaScript?(JavaScript 中有 Set 字面量吗?)
问题描述
我可以用 new Set()
,同样我可以使用 Array 或 Object 或 Boolean 或 Number 构造函数.
I can make a Set with new Set()
, same way I can use the Array or Object or Boolean or Number constructors.
但是是否有一套文字语法,比如数组、对象、布尔值、数字等?
But is there a set literal syntax, like there is for arrays, objects, booleans, numbers etc?
推荐答案
正如其他人所指出的,目前还没有 Set(或 Map)字面量语法.在这个 ES 讨论线程 并在 以下 Twitter 讨论中.
As others have pointed out, there is no Set (or Map) literal syntax yet. There have been a few ideas floating around, in this ES Discuss Thread and in the following twitter discussion.
几个建议的语法示例:
const set = {<1, "two", false>}; // by Brendan Eich
const set = {. 1, "two", false .}; // by Axel Rauschmayer
不过,据我所知,目前还没有任何建议可以实施.
There are, as far as I can see, no proposals to implement any of them yet, though.
这篇关于JavaScript 中有 Set 字面量吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:JavaScript 中有 Set 字面量吗?
基础教程推荐
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01