Hey everyone,
I have a json object that hold alerts and information about them:
var alerts = { 1:{app:'helloworld','message'},2:{app:'helloagain',message:'another message'} }
along with a variable that says how many alerts there are, alertNo
. My question is, when I go to add a new alert, is there a way to append the alert onto the alerts
json object?