I am trying to get the username for a particular user by giving the user id as a param to the FB.api method. But it just returns undefined. If i console.log within the FB.api method, i can see the result. Unable to figure out.
var something;
var friendName = FB.api('/{{ user id }}', function(give){ something = give.name; });
console.log(something);