functions

PHOTO EMBED

Mon Mar 08 2021 16:05:26 GMT+0000 (Coordinated Universal Time)

Saved by @randomize_first #javascript

function Foo() {
  this.a = () => 1;
  this.b = () => 2;
}
Foo.prototype.c = () => 3;
functions(new Foo()); // ['a', 'b']
functions(new Foo(), true); // ['a', 'b', 'c']
content_copyCOPY