![]() |
VOOZH | about |
Lodash _.compact() function is used to create an array with all false values removed in JavaScript. so it returns a new array of filtered values.
_.compact(array);Note: The values are false, null, 0, "", undefined, and NaN are falsey.
Example 1: In this example, we are passing a list of both the true and the false elements to the _.compact() function.
Output:
👁 ImageExample 2: In this example, we are passing a list containing all the false values to the _.compact() function.
Output:
Example 3: In this example, we are passing a list which contains a false element into _.compact() function.
Output:
👁 ImageExample 4: In this example, we are passing a list containing modified false values to the _.compact() function.