“JS spłaszcz” Kod odpowiedzi

JavaScript spłaszcza tablicę

let arr = [
    [1, 2],
    [3, 4],
    [5, 6][7, 8, 9],
    [10, 11, 12, 13, 14, 15]
];
let flatArray = arr.reduce((acc, curVal) => {
    return acc.concat(curVal)
}, []);

//Output:  [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ]
Elated Earthworm

spłaszcz JavaScript tablic

var arrays = [
  ["$6"],
  ["$12"],
  ["$25"],
  ["$25"],
  ["$18"],
  ["$22"],
  ["$10"]
];
var merged = [].concat.apply([], arrays);

console.log(merged);
Bad Bison

tablica spłaszcza

const arr = [1, 2, [3, 4]];

// To flat single level array
arr.flat();
// is equivalent to
arr.reduce((acc, val) => acc.concat(val), []);
// [1, 2, 3, 4]

// or with decomposition syntax
const flattened = arr => [].concat(...arr);
Poised Puffin

JS spłaszcz

import { flatten } from "ramda";

const flattenArray = flatten([1, [2, 3]])
Lucas Charvolin

Odpowiedzi podobne do “JS spłaszcz”

Pytania podobne do “JS spłaszcz”

Więcej pokrewnych odpowiedzi na “JS spłaszcz” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu