admin管理员组文章数量:1341417
Since Symbol
is a unique and immutable data type, a mon use case for Symbol
is object properties. However, is it a good practice to use it as a unique id? For example:
const list = [
{id: Symbol()},
{id: Symbol()}
]
Since Symbol
is a unique and immutable data type, a mon use case for Symbol
is object properties. However, is it a good practice to use it as a unique id? For example:
const list = [
{id: Symbol()},
{id: Symbol()}
]
Share
Improve this question
asked Sep 3, 2015 at 6:15
wuctwuct
10.5k2 gold badges21 silver badges22 bronze badges
3
-
2
It's not really what they're made for, and you could use any object.
{} != {}
– lyschoening Commented Sep 3, 2015 at 7:40 -
@lyschoening
{} !== {}
would not work if we want to maintain an immutable object. – wuct Commented Sep 3, 2015 at 14:38 - @ChingTingWu: Object identity is immutable. If you want the objects themselves to be immutable, you could still freeze them. – Bergi Commented Sep 3, 2015 at 16:47
1 Answer
Reset to default 15This depends entirely on your needs. If you only need them as an identifier in your own codebase, they're fine, certainly better than generating a random ID.
A major downside to using Symbol()
though is that they aren't serializable. There isn't a way to share the value of Symbol()
across networks/processes or save them to disk/databases.
For most cases it's probably better to use auto-incrementing IDs.
本文标签: javascriptIs it a good practice to use ES6 Symbol as unique idsStack Overflow
版权声明:本文标题:javascript - Is it a good practice to use ES6 Symbol as unique ids? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743661370a2518006.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论