Some times we want to get data from a function that isn't ready on time, and it's response is delayed. Those functions are called Asynchronous.
var profile = $.get('http://graph.facebook.com/kapenekos',
function(response){
console.log(response)
return response
})