Can anyone tell me the difference between Javascript Object and JSON object with an example?
Well First of all a JavaScript is just like any other Object in object oriented programming.
And as RobG said JSON is effectively an object literal in Javascript Notation. But Not exactly. According to a Javascript book it says this is an object defined by using Object Notation:
var newObject =
{ prop1 : true,
showMessage : function (msg) {alert(msg)}
};
According to JSON in JavaScript,
JSON is a subset of the object literal notation of JavaScript.
Also you might want to consider taking a look this link