I have a list of words and values, like:
{"word1" : 5, "word2" : 3, "word3", : 15, "word4" : 12}
I want to find and remove all the words that have a value less than 10, so it ends up like:
{"word3" : 15, "word4" : 12}
How do I do this? Just to say, I don't know the values in advance, so I can't just sort and trim some of it.