Last active
August 29, 2015 14:02
-
-
Save rbezerra/c37e1942b681a85e6481 to your computer and use it in GitHub Desktop.
Resultados dos jogos da copa em JavaScript
This file contains hidden or 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
| 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