A Twitch.tv viewer reward and games system.
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.

14 lines
249 B

12 years ago
  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. })