mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 09:03:37 +03:00
c6b22c57f8
Co-authored-by: Fábio Santos <fabiosantosart@gmail.com>
10 lines
112 B
JavaScript
10 lines
112 B
JavaScript
a[0] = 0;
|
|
a[0] = 1;
|
|
a[3.14] = 2;
|
|
a[3.14] = 3;
|
|
a.if = 4;
|
|
a["foo bar"] = 5;
|
|
a.NaN = 6;
|
|
a.null = 7;
|
|
a[void 0] = 8;
|