<script>
fetch("https://facebook.com")
.then(response => response.text())
.then(data => console.log("Fetched:", data));
</script>
Back Next