Skip to content

Instantly share code, notes, and snippets.

@daniele-zurico
Created July 26, 2018 16:45
Show Gist options
  • Save daniele-zurico/20124dad9b936ae667ebac000dfb8639 to your computer and use it in GitHub Desktop.
Save daniele-zurico/20124dad9b936ae667ebac000dfb8639 to your computer and use it in GitHub Desktop.
const items = {name: "Daniele", surname: "Zurico", sex: "male"};
// or
const items = ["Daniele", "Zurico", "male"];
//or
const items = new Map([
["name": "Daniele"],
["surname": "Zurico"]
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment