I have a javascript Array with multiple objects.
var array = [{First_name:Mike, Last_Name: Kelly},{First_Name:Charles, Last_Name:Bronson},{First_Name:Chuck, Last_Name:Norris}];
How can i iterate through each object and string.replace('_'g,' ') each key? Essentially i need to replace the underscore with spaces.