Skip to content

Instantly share code, notes, and snippets.

View bananasmoothii's full-sized avatar
💭
Eating maths

Bananasmoothii bananasmoothii

💭
Eating maths
View GitHub Profile
@bananasmoothii
bananasmoothii / flatten-array.js
Last active February 22, 2021 23:08 — forked from Integralist/flatten-array.js
Array flatten function written in ES6 syntax
function flat(array, depth = 1) {
let result = [];
if (depth !== 1) {
result = array;
for (let i = 0; i < depth; i++) {
result = flat(result);
}
return result;
}
for (let element of array) {