Skip to content

Instantly share code, notes, and snippets.

@OlivierJM
Created August 4, 2018 23:42
Show Gist options
  • Save OlivierJM/01c2999191306ad4d09311a610e5d518 to your computer and use it in GitHub Desktop.
Save OlivierJM/01c2999191306ad4d09311a610e5d518 to your computer and use it in GitHub Desktop.
function getData() {
HTTP.call('GET', 'https://jsonplaceholder.typicode.com/posts', (err, res) => {
if(err){
console.log(err);
} else {
console.log(res);
}
});
console.log('Going to grab data');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment