[Solved] JavaScript append Key:Value Pair to Hash


Just use push.

var newItem = {Title: 'Title5', Description: 'Description5', Status: 'Status5', Complete: 'Complete5'}
data.d.results.push(newItem)

solved JavaScript append Key:Value Pair to Hash