Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 16, 2014 23:03
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 devdays/e967f9824fd361fbdf3c to your computer and use it in GitHub Desktop.
Save devdays/e967f9824fd361fbdf3c to your computer and use it in GitHub Desktop.
JavaScript Objects - Products data (in Data/Products.txt)
{
"products": [
{
"id": 1,
"name": "Toy1",
"category": "Toy",
"price": 45.05,
"description": "<p>This is <strong>strong</strong> description Toy1</p>"
},
{
"id": 2,
"name": "Toy2",
"category": "Toy",
"price": 35.20,
"description": "<p>This is an <em>emphasis</em> description of Toy2</p>"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment