Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ❌ BEFORE
- class Foo {
- static fruits = ["Peach", "Orange", "Pear"];
- static favouriteFruit;
- static init() {
- this.favouriteFruit = this.fruits[0];
- }
- }
- Foo.init();
- // ✅ ES2022
- class Foo {
- static fruits = ["Peach", "Orange", "Pear"];
- static favouriteFruit;
- static {
- this.favouriteFruit = this.fruits[0];
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment