Skip to content

Instantly share code, notes, and snippets.

@dhonx
Forked from tizmagik/getLastInMap.js
Created January 17, 2020 15:47
Show Gist options
  • Save dhonx/53a80bd68c1f04656635d315cae11b00 to your computer and use it in GitHub Desktop.
Save dhonx/53a80bd68c1f04656635d315cae11b00 to your computer and use it in GitHub Desktop.
ES6 Last Item in Map()
// Since ES6 Map()'s' retain their order of insertion, it can sometimes be useful to get the last item or value inserted:
export const getLastItemInMap = map => Array.from(map)[map.size-1]
export const getLastKeyInMap = map => Array.from(map)[map.size-1][0]
export const getLastValueInMap = map => Array.from(map)[map.size-1][1]
// Obviously getLastKey and getLastValue can reuse getLastItem, but for maximum portability I opted for verbosity.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment