I am not able to modify the value of outputString variable inside callback.
var outputString;
client.get(key,function(err,value){
outputString = "key="+key+" value="+value ;
console.log(outputString);
})
console.log(outputString);
When I print the value of outputString, it says "undefined"