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.

14 lines
197B

  1. var dot_notation = {
  2. name: "A Book",
  3. price:{
  4. value: 200,
  5. vat: function() {
  6. return this.value * 0.2;
  7. },
  8. currency: {
  9. symbol: '€',
  10. name: 'Euro'
  11. }
  12. },
  13. in_stock: true
  14. };