I'm extremely new to JS, so I'm struggling on how to even ask the question, but here it goes:
I have a dict:
let x = {a:12,b:5,c:1,d:7,e:10};
Values change but keys remain the same.
I need a way to produce output of highest 3 keys based on their values, something like this:
let gold = "a"
let silver = "e"
let bronze = "d"
Any help is appreciated. Thank you.