Dad Joke API exemple

const getDadJoke = () => { return fetch('https://icanhazdadjoke.com', { headers: { Accept: 'application/json' } }) .then(response => response.json()) .then(response => { console.log(response.joke); }) } getDadJoke();

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.