Skip to content

Instantly share code, notes, and snippets.

@rbezerra
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save rbezerra/c37e1942b681a85e6481 to your computer and use it in GitHub Desktop.

Select an option

Save rbezerra/c37e1942b681a85e6481 to your computer and use it in GitHub Desktop.
Resultados dos jogos da copa em JavaScript
var request=require("request-json");request.newClient('http://worldcup.sfg.io/').get('/matches',function(error,response,body){body.forEach(function(game){if(game.status=='completed')console.log(game.home_team.country+" "+game.home_team.goals+" X "+game.away_team.goals+" "+game.away_team.country)})});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment