Open In App

Collect.js diffKeys() Function

Last Updated : 19 Jul, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

Collect.js is a library in Javascript, which acts as a wrapper for arrays and objects. This library used to convert the array and objects into collections and then perform different operations on them.

The diffKeys method of collect.js converts the array into collections and then compares the collection against another collection based on its keys and returns elements in the original collection that are not present in another collection.

Installation:

  • In NodeJs:
    npm install collect.js
  • CDN for collect.js
    <script src="https://cdnjs.com/libraries/collect.js"></script>

Syntax:

collection.diffkeys(object);

Parameters: It takes only an object as a parameter.

Returns: It returns an object.

Below given are a few examples of this function

Example 1:

When another collection is empty object.




let collect=require("collect.js");
const someCollection = collect({
  "a":1,
  "b":2
});
// Applying diffkeys function
const diff = someCollection.diffKeys({
});
console.log("type of diff is: ", typeof(diff))
console.log("collection is: ", diff)


Output:

Example 2:

When another collection is not a empty object.




let collect=require("collect.js");
const someCollection = collect({
  "a":1,
  "b":2,
  "1":1,
  "2":2
});
// Applying diffkeys function
const diff = someCollection.diffKeys({
  "b":2,
  "2":2
});
console.log("type of diff is: ", typeof(diff))
console.log("collection is: ", diff)


Output:



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads