Created
November 13, 2017 02:49
-
-
Save LiviaSarban/bc3ccd9e8cf668994ee9b30352b0ea4c to your computer and use it in GitHub Desktop.
Product Listing // source https://jsbin.com/lafawov
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Product Listing</title> | |
</head> | |
<body> | |
Product Type: ketchup | |
Brand: | |
Price: | |
URL: | |
Buy again?: Yes/No | |
if (repeatPurchase === true){ | |
Add to cart: | |
var purchaseURL | |
} | |
</body> | |
</html> | |
Data Structure: | |
var product { | |
"productType":"ketchup", | |
"brand":"", | |
"productUrl":"....", | |
"repeatPurchase":true, | |
"purchaseUrl":"", | |
"lastPurchase": ..... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment