I want to fetch only 1st element of json array
my json data :
{  
 id:"1",
 price:"130000.0",
 user:55,
}
{  
  id:"2",
  price:"140000.0",
 user:55,
}
i want to access the price of 1st json element price : "13000.0"
my code
$.each(data_obj, function(index, element) {
    $('#price').append(element.price[0]);
});
but my output is '1'
 
     
     
     
     
     
     
    