Using the Graph API we can access the image for any object like a user, event, photo etc. if its ID is provided.
So if I need to retrieve my user profile pic I can do it by
https://graph.facebook.com/100000109274242/picture
My ID is 100000109274242
The above URL redirects me to https://fbcdn-profile-a.akamaihd.net/hprofile-ak-snc4/49592_100000109274242_1437093998_q.jpg
Which is the actual URL of my image. I need to write a JS function using which I need to retrieve the actual URL of the photo. I couldnt do anything because I dont understand where to start from using JS.