```js class Test { ["foo"] = 2; } ``` get transpiled to ```js var _a; var Test = class { [_a] = 2; }; _a = "foo"; ``` which gets evaluated as ```js var Test = class { [undefined] = 2; }; ```
get transpiled to
which gets evaluated as