Skip to content

Instantly share code, notes, and snippets.

@SpencerCooley
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SpencerCooley/7a8bc976e274e46cafac to your computer and use it in GitHub Desktop.
Save SpencerCooley/7a8bc976e274e46cafac to your computer and use it in GitHub Desktop.
var theData = getData();
function waitForData(){
if(theData == undefined){
console.log("data not set yet.")
setTimeout(waitForData(), 3000)
}
else{
console.log("hello world. Data is now set")
}
}
waitForData();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment