JSFiddle - React, Tailwind, and code Playground

by 3gwebtrain

JavaScript

var 
data = {
    people : [
        {name:'Caring', state:'Tn', price:100},
        {name:'Mo', state:'Ap', price:200},
        {name:'af', state:'Jk', price:33},
        {name:'adi', state:'Kl', price:400},
        {name:'Hu', state:'Ka', price:600}
    ]
};

var total = _.reduce(data.people, function(memo, value){
         return memo + value.price
},0)

console.log(total);