diff

v1.0.0arrow_drop_down
v1.0.0
v0.0.1
STATUS
Passing
DOWNLOADS
76
LICENSE
MIT
VISIBILITY
Public
PUBLISHED
7 years ago
SIZE
508 B
Computes the difference between two array references.
2 contributors
Install diff as a package?
Copied
npm i @bit/bit.utils.array.diff
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
diff (
firstArray:[],
secondArray:[]
) : []

Computes the difference between two array references.

Example
diff([1,2,3], [1,2,3,4,5]) // => [4,5]
Arguments
firstArray: []
secondArray: []
Returns
[]

returns an array representing the difference between the two arrays

Test Summary

#array/diff() should return an empty array as both arrays are equal

Pass

#array/diff() should return the difference between the two arrays (1, 5, 6)

Pass
Help and resources