micro365/src/index.js

10 lines
200 B
JavaScript
Raw Normal View History

2023-07-16 18:11:21 +00:00
import makeToot from "./makeToot.js"
const word = "and"
const output = fetch(`https://api.dictionaryapi.dev/api/v2/entries/en/${word}`)
.then(res=>res.json()).then(json=>{
makeToot(json[0])
})