Created
May 29, 2018 16:52
-
-
Save Hydrock/bbdfd575b8c548c397577b76241f1326 to your computer and use it in GitHub Desktop.
This file contains 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
async getPost = () => { | |
const response = await fetch('https://jsonplaceholder.typicode.com/posts/1'); | |
const data = await response.json(); | |
console.log(data); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uncaught SyntaxError: Unexpected identifier