JSFiddle - React, Tailwind, and code Playground

by WoJWoJ

JavaScript

class URLGetter {

  printOnConsole() {
    this.result
      .then(r => r.text())
      .then(r => console.log(r))
  }

  getURL(url) {
    this.result = fetch(url)
    return this
  }

}

new URLGetter()
  .getURL("https://worldtimeapi.org/api/timezone/Europe/Paris.txt")
  .printOnConsole()