You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
367 B
23 lines
367 B
({
|
|
name: "A Book",
|
|
authors: ["John Power", "Jamie Walsh"],
|
|
price: {
|
|
value: 200,
|
|
vat: function () {
|
|
return this.value * 0.2;
|
|
},
|
|
currency: {
|
|
symbol: '$',
|
|
name: 'USD'
|
|
}
|
|
},
|
|
availability: {
|
|
status: true,
|
|
text: "In Stock"
|
|
},
|
|
// And now, some truthy false values
|
|
truthy: {
|
|
zero: 0,
|
|
notTrue: false
|
|
}
|
|
})
|