Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

higher_order_sections.js 190B

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