Skip to content

Instantly share code, notes, and snippets.

@kingluddite
Created May 2, 2020 01:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kingluddite/d780691c18182e56d4dec64235189834 to your computer and use it in GitHub Desktop.
Save kingluddite/d780691c18182e56d4dec64235189834 to your computer and use it in GitHub Desktop.
simple object
var characters = [
{
routeName: "yoda",
name: "Yoda",
role: "Jedi Master",
age: 900,
forcePoints: 2000
},
{
routeName: "darthmaul",
name: "Darth Maul",
role: "Sith Lord",
age: 200,
forcePoints: 1200
},
{
routeName: "obiwankenobi",
name: "Obi Wan Kenobi",
role: "Jedi Master",
age: 55,
forcePoints: 1350
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment