Skip to content

Instantly share code, notes, and snippets.

@Tombarr
Created January 19, 2019 23:04
Show Gist options
  • Save Tombarr/5d1dc291fc3ad4253ac98b942c097a69 to your computer and use it in GitHub Desktop.
Save Tombarr/5d1dc291fc3ad4253ac98b942c097a69 to your computer and use it in GitHub Desktop.
Objects as maps in Javascript
let map = {
red: "blue",
1: 2,
true: false
};
map[true]; // false
map["red"]; // "blue"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment