$scope.combineComments = function (){ var jsonStr = $scope.projectDetails.Comments; var obj = JSON.parse(jsonStr); obj.push({"Author":"Test","Text":$scope.NewComment}); jsonStr = JSON.stringify(obj); } }