Skip to content

Instantly share code, notes, and snippets.

@rexcfnghk
Last active June 6, 2016 13:36
Show Gist options
  • Select an option

  • Save rexcfnghk/a992d0f6086b16d475b0a852f2257455 to your computer and use it in GitHub Desktop.

Select an option

Save rexcfnghk/a992d0f6086b16d475b0a852f2257455 to your computer and use it in GitHub Desktop.
const http = require('http'),
urls = [ 'http://www.google.com', 'http://www.yahoo.com' ];
urls.forEach((e, i) => http.get(e, _ => console.log('i: ' + i)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment