Wednesday, July 3, 2024
HomeLanguagesJavascriptCollect.js | flip() function

Collect.js | flip() function

The flip() function swaps the key with its corresponding value. In JavaScript, the array is first converted to a collection and then the function is applied to the collection.

Syntax: 

data.flip()

Parameters: This function does not accept any parameter.

Return Value:  Returns by flipping the collection.
 

Below examples illustrate the flip() function in collect.js
Example 1:  Here in this example, we take a collection and then using the flip() function we flip the key and the item in collection.

Javascript




// It is used to import collect.js library
const collect = require('collect.js');
  
const collection = collect({
  name: 'Jhon ',
  number: 000-555,
});
  
console.log(collection.flip());


Output:

Collection { items: { 'Jhon ': 'name', '-555': 'number' } }

Example 2:

Javascript




// It is used to import collect.js library
const collect = require('collect.js');
  
const collection = collect({
    address : ['311-Street', 'US'],
    pin : 2546,
    number : 9898-585-598, 
});
  
const X  = collection.flip();
console.log(X.all());


Output:

{ '2546': 'pin', '8715': 'number', '311-Street,US': 'address' }

Reference: https://collect.js.org/api/count.html

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen 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!

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments