If I would like to decrease the value of the hashmap by one from the previous value in javascript then what do I do?
var hash_A=new Map();
hash_A.set("a",5);
let example = new Map()
example.set('value', 10) // set initial value
example.set('value', example.get('value') - 1) // override previous value