partial_view.js 250 B

1234567891011121314
  1. ({
  2. greeting: function () {
  3. return 'Welcome';
  4. },
  5. farewell: function () {
  6. return 'Fair enough, right?';
  7. },
  8. name: 'Chris',
  9. value: 10000,
  10. taxed_value: function () {
  11. return this.value - (this.value * 0.4);
  12. },
  13. in_ca: true
  14. });