Skip to content

Instantly share code, notes, and snippets.

@jihokoo
Created April 25, 2014 00:33
Show Gist options
  • Save jihokoo/11274218 to your computer and use it in GitHub Desktop.
Save jihokoo/11274218 to your computer and use it in GitHub Desktop.
(function challenge (url){
$.getJSON(url || 'http://letsrevolutionizetesting.com/challenge', function(data){
data.follow ? challenge(data.follow) : console.log('this is it', data);
})
})()
IIFE (Immediately Invoked Function Expression)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment