Skip to content

Instantly share code, notes, and snippets.

@theDreamer911
Created April 18, 2021 02:49
Show Gist options
  • Save theDreamer911/9408f5f198ff285af3b13a12e2849bc6 to your computer and use it in GitHub Desktop.
Save theDreamer911/9408f5f198ff285af3b13a12e2849bc6 to your computer and use it in GitHub Desktop.
const fetch = require("node-fetch");
fetch("https://type.fit/api/quotes")
.then((response) => response.json())
.then((data) => console.log(data[Math.floor(Math.random() * 1000)]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment