Dashboard sipadu mbip
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

forget.md 483B

forget()

The forget method removes an item from the collection by its key:

const collection = collect({
  name: 'Steven Gerrard',
  number: 8,
});

collection.forget('number');

collection.all();

// {
//   name: 'Steven Gerrard',
// }

Unlike most other collection methods, forget does not return a new modified collection; it modifies the collection it is called on.

View source on GitHub