I cannot remove the dollar sign from the balance properties, I am not sure what I am missing? I thought it was string.replace(searchvalue, newvalue)??
const data = [{
index: "14",
name: "Bob",
balance: "$100",
},
{
index: "23",
name: "John",
balance: "$120",
},
{
index: "17",
name: "Steve",
balance: "$80",
},
];
const balances = data.map((amount) => {
var newAmount = amount.replace("$", "");
console.log(newAmount);
});
What I want:
100
120
80
You just forgot to get the balance property of each item.