RosettaCodeData/Task/HTTPS/JavaScript/https-1.js

11 lines
233 B
JavaScript
Raw Normal View History

2019-09-12 10:33:56 -07:00
fetch("https://sourceforge.net")
.then(function(response) {
return response.text();
})
.then(function(content) {
console.log(content)
})
.catch(function (err){
console.error(err)
});