Skip to content

Instantly share code, notes, and snippets.

View EliaMelfior's full-sized avatar

Eliâ Melfior EliaMelfior

  • Joinville, Santa Catarina
View GitHub Profile
@EliaMelfior
EliaMelfior / gist:61288b615c5ef035f0b4e83aa7fefe0c
Last active December 15, 2019 20:51
Flattening an Array With Tests
class MyArray {
constructor() {
this.flattenedArray = [];
}
flattenArray(array) {
let me = this;
array.forEach(function(element) {
if (!Array.isArray(element)) {