I have a JSON string(?) that I have returned from $.ajax() and named it data. Some of the values are empty and I need to
JSON
string(?)
$.ajax()
data
Once you have decoded the JSON, the result is a JavaScript object. Just manipulate it as you would any other object. For example:
data.busNum = 12345; ...