This community-built FAQ covers the “Flatten an Array” code challenge in JavaScript. You can find that challenge here, or pick any challenge you like from our list.
Top Discussions on the JavaScript challenge Flatten an Array
There are currently no frequently asked questions or top answers associated with this challenge – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this challenge. Ask a question or post a solution by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this challenge, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
You can also find further discussion and get answers to your questions over in #get-help.
Agree with a comment or answer? Like () to up-vote the contribution!
function flattenArray(array) {
let temp = [];
array.forEach(i=>{
typeof i === 'object'?temp.push(...i):temp.push(i)
});
return temp;
}
console.log(flattenArray([1, 2, [3, 4, 5], 6, [7, 8], 9]))
// Leave this so we can test your code:
module.exports = flattenArray;```
function flatten(item, array) {
if (Array.isArray(item)) {
item.forEach((inside) => {
console.log("Flatten:", inside);
flatten(inside, array);
});
} else {
console.log("Pushed:", item);
array.push(item);
}
}
function flattenArray(array) {
// Write your code here
const result = [];
for (let i = 0; i < array.length; i++) {
flatten(array[i], result);
}
return result;
}
console.log(flattenArray([1, 2, [3, 4, 5], 6, [7, 8], 9]))
// Leave this so we can test your code:
module.exports = flattenArray;
function flattenArray(array) {
var res = [];
array.map(el => {
if (typeof el === 'object' && el.length > 0) {
for (var i = 0; i < el.length; i++) {
res.push(el[i])
}
} else {
if (el.length !== 0) {
res.push(el)
}
}
})
return res;
}
console.log(flattenArray([1, 2, [3, 4, 5], 6, [7, 8], 9, []]))
// Leave this so we can test your code:
module.exports = flattenArray;
function flattenArray(array, arr=[]) {
for (let i = 0; i < array.length; i++) {
const x = array[i]
if (Array.isArray(x)) {
flattenArray(x, arr)
} else {
arr.push(x)
}
}
return arr
}
console.log(flattenArray([1, 2, [3, 4, 5], 6, [7, 8], 9]))
// Leave this so we can test your code:
module.exports = flattenArray;
It is rather moot now that we the flat() method. This one uses the spread with .concat()
function flattenArray(array) {
let currentIndex = 0;
let faltArray = [];
while (currentIndex !== array.length) {
const instanceOfArray = array[currentIndex] instanceof Array;
if (!instanceOfArray) {
faltArray.push(array[currentIndex]);
}
if (instanceOfArray) {
for (const valuesOfSecDemensional of array[currentIndex]) {
faltArray.push(valuesOfSecDemensional);
}
}
currentIndex++;
}
return faltArray;
}
console.log(flattenArray([1, 2, 3, [4, 5], 6, [7, 8], 9]))
// Leave this so we can test your code:
module.exports = flattenArray;
function flattenArray(array) {
let result = [];
array.forEach(el =>
Array.isArray(el) ? el.forEach(elmt =>
result.push(elmt)) : result.push(el)
);
return result;
}
console.log(flattenArray([1, 2, [3, 4, 5], 6, [7, 8], 9]))
// Leave this so we can test your code:
module.exports = flattenArray;
function flattenArray(array) {
// Write your code here
return array.reduce((acc, val) => acc.concat(val), []);
}
console.log(flattenArray([1, 2, [3, 4, 5], 6, [7, 8], 9]))
// Leave this so we can test your code:
module.exports = flattenArray;
tried not to use the Mozilla reduce function like others did since it’s basically just laid out for them.
function flattenArray(array) {
// Write your code here
let a = []
for(let x = 0; x < array.length; x++){
if(typeof array[x] === "object"){
a = a.concat(array[x])
}else{
a.push(array[x])
}
}
return a;
}
console.log(flattenArray([1, 2, [3, 4, 5], 6, [7, 8], 9]))
// Leave this so we can test your code:
module.exports = flattenArray;
function flattenArray(array) {
return array
.reduce((list, x) => [...list, ...(typeof x != 'number' ? x : [x])], [])
}
console.log(flattenArray([1, 2, [3, 4, 5], 6, [7, 8], 9]))
// Leave this so we can test your code:
module.exports = flattenArray;
function flattenArray(array) {
// Write your code here
let flatten = [];
array.forEach(value=>{
if(typeof value == 'object'){
value.forEach(value=>{
flatten.push(value);
})
}else{
flatten.push(value);
}
})
return flatten;
}
console.log(flattenArray([1, 2, [3, 4, 5], 6, [7, 8], 9]))
// Leave this so we can test your code:
module.exports = flattenArray;
function flattenArray(array) {
// Write your code here
let theArr=;
array.forEach((element)=>{
if(Array.isArray(element)){
theArr.push(…element);
}else{
theArr.push(element);
}
});
return theArr
}
function flattenArray(array) {
let flattened =
for (let i = 0; i < array.length; i += 1){
let item = array[i]
if( typeof item === “number” ){
flattened.push(item)