Flattening an array with truthy/ falsy values without using library functions - JavaScript


We are required to write a JavaScript array function that takes in a nested array with falsy values and returns an array with all the elements present in the array without any nesting.

For example − If the input is −

const arr = [[1, 2, 3], [4, 5, [5, false, 6, [5, 8, null]]], [6]];

Then the output should be −

const output = [1, 2, 3, 4, 5, false, 6, 5, 8, null, 6];

Example

Following is the code −

const arr = [[1, 2, 3], [4, 5, [5, false, 6, [5, 8, null]]], [6]];
const flatten = function(){
   let res = [];
   for(let i = 0; i < this.length; i++){
      if(Array.isArray(this[i])){
         res.push(...this[i].flatten());
      }else{
         res.push(this[i]);
      };
   };
   return res;
};
Array.prototype.flatten = flatten;
console.log(arr.flatten());

Output

This will produce the following output in console −

[
   1, 2, 3,     4,
   5, 5, false, 6,
   5, 8, null,  6
]

Updated on: 18-Sep-2020

94 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements