ReactLearning/TSLearning/Section 1/app.js

9 lines
210 B
JavaScript
Raw Normal View History

2021-04-22 18:23:26 -04:00
function sendRequest(data, cb) {
// ... sending a request with "data"
return cb({ data: 'Hi there!' });
}
sendRequest('Send this!', function (response) {
console.log(response);
return true;
});