One of my challenges involves dealing with objects, specifically $scope.formData = {}
I am trying to figure out how to remove an element from the object using the index $index
:
$scope.formData.university[$index];
My attempt was:
$scope.formData.university.splice($index);