Skip to content

Instantly share code, notes, and snippets.

View rsturim's full-sized avatar

Rich Sturim rsturim

  • VT, USA
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
}