Here i'm new to Jquery Please Help me
 var obj={"FirstName":'Hussain','LastName':'Ali','MiddleName':'Zain'}
    $('#jsonConvert').click(function () {
        var Objected = JSON.stringify(obj);
        console.log(Objected);
        var Raw = obj;
        console.log(Raw);
    })
When i Convert .Stringify() its Give me same result as of Raw Then what is use of .Stringify();
If i want  Only FirstName then how can i get
 
     
     
    