Files
ihrm/node_modules/collect.js/docs/api/combine.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

18 lines
422 B
Markdown
Executable File

# `combine()`
The combine method combines the keys of the collection with the values of another array or collection:
```js
const collection = collect(['name', 'number']);
const combine = collection.combine(['Mohamed Salah', 11]);
combine.all();
// {
// name: 'Mohamed Salah',
// number: 11
// }
```
[View source on GitHub](https://github.com/ecrmnn/collect.js/blob/master/src/methods/combine.js)