Files
ihrm/node_modules/collect.js/docs/api/values.md
Nikhil Ravi Cybrosys e1794e7422 [UPDT]translations in the views (#4)
[UPDT]Translations in the views
[FIX]major bug fixes
2023-05-18 15:05:28 +05:30

20 lines
397 B
Markdown
Executable File

# `values()`
The values method returns a new collection with the keys reset to consecutive integers:
```js
const collection = collect({
a: 'xoxo',
b: 'abab',
c: '1337',
1337: 12,
});
const values = collection.values();
values.all();
// [12, 'xoxo', 'abab', '1337']
```
[View source on GitHub](https://github.com/ecrmnn/collect.js/blob/master/src/methods/values.js)