No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

18 líneas
276B

  1. var dot_notation = {
  2. name: "A Book",
  3. authors: ["John Power", "Jamie Walsh"],
  4. price:{
  5. value: 200,
  6. vat: function() {
  7. return this.value * 0.2;
  8. },
  9. currency: {
  10. symbol: '€',
  11. name: 'Euro'
  12. }
  13. },
  14. availability:{
  15. status: true,
  16. text: "In Stock"
  17. }
  18. };