function-class.js 123 B

1234567891011
  1. "use strict";
  2. const targets = [];
  3. function Foo() {
  4. targets.push(new.target);
  5. }
  6. new Foo;
  7. expect(targets[0]).toBe(Foo);