Skip to content

Instantly share code, notes, and snippets.

@marti1125
Created May 3, 2015 21:06
Show Gist options
  • Save marti1125/e8c1b6104496de2f54d0 to your computer and use it in GitHub Desktop.
Save marti1125/e8c1b6104496de2f54d0 to your computer and use it in GitHub Desktop.
ordenar un map
var map = new Map();
map.set("foo", "bar");
map.set("bb", "teeee");
map.set("aa", "bgggar");
var lineas = []
for (var key of map.keys()) {
lineas.push(key);
}
lineas.sort();
for (var i = 0; i < lineas.length ; i++)
{
alert(map.get(lineas[i]));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment