I want the value in the key value object to be converted to a string i.e., lets say I have object keyValue where, `
var keyValue = { A : 20, b : 210 , 1 :30 , 3 : 322};
my converted object should be
var keyValue = {A : '20', b : '210' , 1 :'30' , 3 : '322' };
As you can see all the numbers are converted to strings. Please help me achieve this.