選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

15 行
249B

  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. })