JSFiddle - React, Tailwind, and code Playground

JavaScript

var data = [{"username":"[email protected]","sourceCountry":"France","sourceCompound":"Valenton","destinationCountry":"Austria","destinationCompound":"Trnava","destinationDelivery":"ZipCode2","price":351.74,"waitingDays":2,"handlingCharge":15,"storageCharge":0.75,"comment":"3 days storage free"}] ;
console.log(data);
 //alert(data[0].username)

 Object.keys(data[0]).forEach(function(key) {
 alert('Key : ' + key + ', Value : ' + data[0][key])
})