Skip to content

Instantly share code, notes, and snippets.

@onurinanc
Created November 25, 2021 19:24
Show Gist options
  • Save onurinanc/9565e72a2f96e63092250266d807dc43 to your computer and use it in GitHub Desktop.
Save onurinanc/9565e72a2f96e63092250266d807dc43 to your computer and use it in GitHub Desktop.
const map = new Map([[1, 2], [2, 4], [4, 8]]);
Array.from(map)
// [1, 2], [2, 4], [4, 8]
Array.from(map.values());
// [2, 4, 8]
Array.from(map.keys());
// [1, 2, 4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment