copy-this-to-local.js 215 B

12345678910
  1. test("copy this to a local", () => {
  2. const foo = {
  3. foo() {
  4. let thisCopy = this;
  5. thisCopy = "oops";
  6. return this;
  7. },
  8. };
  9. expect(foo.foo()).toBe(foo);
  10. });