I have an array of json objects from the server:
var a = [
{id:1,name:"Piano",class:"Instrument"},
{id:2,name:"Guitar",class:"null"},
{id:3,name:"null",class:"null"},.....]
Using underscorejs, is it possible to loop through these objects and change every "null" value in every key with empty string ""?