I noticed an empty comment block in the JSONP output returned by the facebook api graph for all methods.
URL I called:
https:
JSONP Output:
theGreatFunction({
"data": [
{
"name": "First Friend",
"id": "XXXX"
},
{
"name": "Second Friend",
"id": "XXXXXX"
},
........
My question is: what is an empty comment block /* */in front of the callback function? Does it have a peculiar purpose? Does it fix any known javascript access?
source
share