Me learning react like an absolute chungus
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

9 řádky
210B

  1. function sendRequest(data, cb) {
  2. // ... sending a request with "data"
  3. return cb({ data: 'Hi there!' });
  4. }
  5. sendRequest('Send this!', function (response) {
  6. console.log(response);
  7. return true;
  8. });