MCPcopy Index your code
hub / github.com/marijnh/Eloquent-JavaScript / delete

Method delete

code/solutions/06_2_groups.js:10–12  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

8 }
9
10 delete(value) {
11 this.#members = this.#members.filter(v => v !== value);
12 }
13
14 has(value) {
15 return this.#members.includes(value);

Callers 1

06_2_groups.jsFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected