Skip to content

Instantly share code, notes, and snippets.

@av1v3k
Created December 15, 2025 15:47
Show Gist options
  • Select an option

  • Save av1v3k/11c5497096e00b9d490e707ca48aaabf to your computer and use it in GitHub Desktop.

Select an option

Save av1v3k/11c5497096e00b9d490e707ca48aaabf to your computer and use it in GitHub Desktop.
Use Map in JS
let m = new Map<string, number>([
['address', 500],
['age', 25],
]);
m.set('street', 400);
console.log(m.get('address'))
console.log(m)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment