RosettaCodeData/Task/HTTP/JavaScript/http-2.js

6 lines
136 B
JavaScript
Raw Normal View History

2023-12-16 21:33:55 -08:00
fetch('http://rosettacode.org').then(function (response) {
2023-07-01 11:58:00 -04:00
return response.text();
2023-12-16 21:33:55 -08:00
}).then(function (text) {
console.log(text);
2023-07-01 11:58:00 -04:00
});