You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
299B

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