Skip to content

Instantly share code, notes, and snippets.

@johnlokerse
Created September 26, 2022 19:42
Show Gist options
  • Save johnlokerse/ff80a232fce42630ef83c07205c1d90c to your computer and use it in GitHub Desktop.
Save johnlokerse/ff80a232fce42630ef83c07205c1d90c to your computer and use it in GitHub Desktop.
var varGroceryStore = [
{
productName: 'Icecream'
productPrice: 5
productCharacteristics: [
'Vegan'
'Seasonal'
]
}
{
productName: 'Cheese'
productPrice: 2
productCharacteristics: [
'Bio'
]
}
{
productName: 'Banana'
productPrice: 4
productCharacteristics: [
'Bio'
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment