Skip to content

Instantly share code, notes, and snippets.

View rosshabe's full-sized avatar
💭
Imagine that

Ross Behewa rosshabe

💭
Imagine that
View GitHub Profile
const map = new Map();
map.set(1, 'Number one');
map.set('1', 'String one');
map.set(true, 'Boolean true');
console.log(map.get(1)); // Output: Number one
const map = new Map();
map.set('a', 1);
map.set('b', 2);