mstch/test/data/lambda/simple.js

9 lines
131 B
JavaScript
Raw Normal View History

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