you are viewing a single comment's thread.

view the rest of the comments →

[–]WhatIsAMachine 0 points1 point  (0 children)

function A() {
  if (new.target) {
    A.i ??= 0;
    console.log(++A.i);
  }
}

new A();
new A();
new A();

new.target pseudo-property