Me learning react like an absolute chungus
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.

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