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.

higher_order_sections.js 188B

123456789
  1. ({
  2. name: "Tater",
  3. helper: "To tinker?",
  4. bolder: function () {
  5. return function (text, render) {
  6. return text + ' => <b>' + render(text) + '</b> ' + this.helper;
  7. }
  8. }
  9. })