Collect.js put() Method

The put() method is used to set the given key and value in the collection.
Syntax:
collect(array).put(key)
Parameters: The collect() method takes one argument that is converted into the collection and then put() method is applied on it. The put() method holds the key as parameter.
Below example illustrate the put() method in collect.js:
Example 1:
Javascript
const collect = require('collect.js');Â
let obj = ['Geeks', 'GFG', 'zambiatek'];Â
const collection = collect(obj);Â
collection.put('Welcome');Â
console.log(collection.all()); |
Output:
[ 'Geeks', 'GFG', 'zambiatek', Welcome: undefined ]
Example 2:
Javascript
const collect = require('collect.js');Â
let obj = {    name: 'Rahul',    dob: '25-10-96',    section: 'A',    score: 98,};Â
const collection = collect(obj);Â
collection.put(['Welcome to zambiatek']);Â
console.log(collection.all()); |
Output:
{
name: 'Rahul',
dob: '25-10-96',
section: 'A',
score: 98,
'Welcome to zambiatek': undefined
}
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!



