hand sketched logo of electrons orbiting a nucleus

TIL: JavaScript Maps are Ordered

More like "I was todays years old when..."

Show me the code!

const map = new Map();
map.set('a', 1);
map.set('b', 2);

console.log(map.keys()); // MapIterator {"a", "b"} 😅