-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Open
Labels
Description
// example 1
var a={}, b='123', c=123;
a[b]='b';
a[c]='c';
console.log(a[b]);
// example 2
var a={}, b=Symbol('123'), c=Symbol('123');
a[b]='b';
a[c]='c';
console.log(a[b]);
// example 3
var a={}, b={key:'123'}, c={key:'456'};
a[b]='b';
a[c]='c';
console.log(a[b]);
liuhuaxia, sanyuan0704, 1154896901, YealZoy, dixinL and 1 moreSummer-insects, ShuShengjie, ckjie, liangbus, samdebug and 10 more