Created
November 25, 2021 19:24
-
-
Save onurinanc/9565e72a2f96e63092250266d807dc43 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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