ReactLearning/TSLearning/Section 1/app.js
2021-04-23 10:23:26 +12:00

9 lines
210 B
JavaScript

function sendRequest(data, cb) {
// ... sending a request with "data"
return cb({ data: 'Hi there!' });
}
sendRequest('Send this!', function (response) {
console.log(response);
return true;
});