Appearance
arrayDifference
Create an array that contains values not included in the other given array, using === string equal.
Example
arrayDifference([1, 2, 3], [2, 3]) // => [1]
Link
Playground
const { arrayDifference } = require('rhodash')
arrayDifference([1, 2, 3], [2, 3]) // => [1]