mstch/test/data/lambda/simple.js
Daniel Sipka eb98985815 import
2015-04-09 20:41:27 +02:00

9 lines
131 B
JavaScript

({
name: "Chris",
value: 10000,
taxed_value: function () {
return this.value - (this.value * 0.4);
},
in_ca: true
})