partial_whitespace.js 249 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 ({ greeting: function () { return "Welcome"; }, farewell: function () { return "Fair enough, right?"; }, name: "Chris", value: 10000, taxed_value: function () { return this.value - (this.value * 0.4); }, in_ca: true })