Skip to content

Instantly share code, notes, and snippets.

@djD-REK
Created August 14, 2019 20:47
Show Gist options
  • Select an option

  • Save djD-REK/db35af5ff86586f409e2a83fe186e999 to your computer and use it in GitHub Desktop.

Select an option

Save djD-REK/db35af5ff86586f409e2a83fe186e999 to your computer and use it in GitHub Desktop.
import "./styles.css";
const cards = [[["♠️"], "♣"], ["♥", "♦️"]];
console.log(cards.flat()); // flat() implies a maximum depth of 1
// result: [Array[1], "♣", "♥", "♦️"]
console.log(cards.flat(2)); // Here we use a maximum depth of 2
// result: ["♠️", "♣", "♥", "♦️"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment