I've got this array with different labels and always different values.
I would like to have the three lowest values and return the labels in from of those values.
I'm searching my *ss off but JS and other code programming is not my cup of tea.
I've tried converting it to a CSV in Node-RED and tried to select the MIN value but I get only one value and I would like have three off them.
Is there a simple solution for this? Or is this not possible with this structure of the array?
or in original example you can slice(-3) for last 3 which should be the highest.
It really depends on how you want the 3 keys returned, low to high or high to low.