'use strict';

class MyClass {
  myProp = 42;

  constructor() {
    console.log(this.myProp); // 42
  }
}
