Created
December 16, 2014 21:36
-
-
Save devdays/ffb18b09918a75a8c8fd to your computer and use it in GitHub Desktop.
Object JavaScript - JSON file in products.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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