function removeItem(){
    for(i=0;i<rowData.length;i++){
        if(rowData[i].title = 'First Name'){
            rowData.splice(i,1);
            break;
        }
}
This does not delete the object whose has a title property 'First Name' instead deletes the last added object to the array.
 
     
     
    