I have Json:
[
{
"name":"Apple",
"price":2,
"have":0,
"max":36
},
{
"name":"Pineapple",
"price":5,
"have":6,
"max":17
}
]
I need the fastest function, that receives name, and sends price. For example for print(jsonname("Apple")) is 2.
P.S. Please do not post Loop answers, I know them. I need fast methods and names of methods