This is the behavior defined in the spec:
```js
const key1 = Symbol('description');
const key2 = Symbol();
let obj = {
[key1]() {},
[key2]() {},
};
console.log(obj[key1].name); // '[description]'
console.log(obj[key2].name); // ''
```
I’m wondering: if a symbol has no description, wouldn’t it be better to give
the method the name `'[]'` instead of the empty string?
--
Dr. Axel Rauschmayer
[email protected] <mailto:[email protected]>
rauschma.de
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss