Can you help me identify the array element with the highest 'conversion' value?
var barTextData = [
{
term: "Roof",
clicks: 11235,
conversion: 3.12
}, {
term: "Snow",
clicks: 6309,
conversion: 4.45
}, {
term: "Chains",
clicks: 4479,
conversion: 4.33
}
]
Additionally, I need to retrieve the corresponding 'term' string.