mstch/test/data/lambda/simple.js

9 lines
131 B
JavaScript
Raw Normal View History

2015-04-10 02:41:27 +08:00
({
name: "Chris",
value: 10000,
taxed_value: function () {
return this.value - (this.value * 0.4);
},
in_ca: true
})