Created
April 18, 2021 02:49
-
-
Save theDreamer911/9408f5f198ff285af3b13a12e2849bc6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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