What is the difference between JSON and JSONP?

JSON: JSON is a simple data format used for communication medium between different systems
JSONP: It is a methodology for using that format with cross-domain ajax requests while not being affected by same origin policy issue.

Leave a Reply