RosettaCodeData/Task/HTTPS/JavaScript/https-2.js
2023-12-16 21:33:55 -08:00

5 lines
135 B
JavaScript

fetch("https://sourceforge.net").then(function (response) {
return response.text();
}).then(function (body) {
return body;
});