1 2 3 4 5 6 7 8 9
let Foo = class { constructor() { this.bar = 5; } }; let x = new Foo(); x.bar; // ^ defined: 3