Skip to content

Instantly share code, notes, and snippets.

View muratkeremozcan's full-sized avatar

Murat K Ozcan muratkeremozcan

View GitHub Profile
@mpj
mpj / example01.js
Created August 14, 2017 07:38
Code for the async/await episode of Fun Fun Function.
const response = await fetch(`https://catappapi.herokuapp.com/users/${userId}`)
const data = await response.json()
return data.imageUrl
}