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.

18 line
273B

  1. var partial_whitespace = {
  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. };