Splice delete the last element -- [Question Asked]

Query asked by user

I am trying to delete an element of an array with splice, but .splice is deleting the last element all the time. The index that I am passing is correct. What am I doing wrong?

$scope.deleteSingleAnswer = function (index) {
  console.log(index);
  console.log($scope.editAnswers);
  $scope.editAnswers.splice(index);
  console.log($scope.editAnswers);
}; 

Answer we found from sources

You need to specify how many elements to delete after that particular index. see here

The splice() method changes the content of an array by removing
existing elements and/or adding new elements.

var myFish = ["angel", "clown", "mandarin", "surgeon"];
myFish.splice(2, 0, "drum");

Syntax

array.splice(start)
array.splice(start, deleteCount)
array.splice(start, deleteCount, item1, item2, ...)

Parameters

start Index at which to start changing the array (with origin 0). If
greater than the length of the array, actual starting index will be
set to the length of the array. If negative, will begin that many
elements from the end of the array.

deleteCount Optional

An integer indicating the number of old array elements to remove. If
deleteCount is 0, no elements are removed. In this case, you should
specify at least one new element. If deleteCount is greater than the
number of elements left in the array starting at start, then all of
the elements through the end of the array will be deleted. If
deleteCount is omitted, deleteCount will be equal to (arr.length –
start). item1, item2, … Optional The elements to add to the array,
beginning at the start index. If you don’t specify any elements,
splice() will only remove elements from the array.

Answered By – Ghazanfar Khan

This Answer collected from stackoverflow, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0


What is Angular?

Angular is an open-source, JavaScript outline written in TypeScript. Google keeps up with it, and its basic role is to foster single-page activities. As an edge, Angular enjoys clear benefits while likewise outfitting a standard design for formulators to work with. It empowers stoners to deliver huge tasks in a viable way. textures overall lift web improvement viability and execution by outfitting an agreeable construction so that formulators do n't need to continue to modify regulation from scratch. textures are efficient devices that offer formulators a large group of extra elements that can be added to programming easily.

However, is JavaScript ideal for creating single-sprinter activities that bear particularity, testability, and trend-setter efficiency? maybe not.

JavaScript is the most by and large utilized client-side prearranging language. It's composed into HTML reports to empower relations with web sprinters in endless extraordinary ways. As a genuinely simple to-learn language with inescapable help, creating current operations is appropriate.

Nowadays, we have various textures and libraries intended to give essential outcomes. As for front end web advancement, Angular addresses incalculable, while possibly not all, of the issues formulators face while utilizing JavaScript all alone.
Who we are?

We are team of software engineers in multiple domains like Programming and coding, Fundamentals of computer science, Design and architecture, Algorithms and data structures, Information analysis, Debugging software and Testing software. We are working on Systems developer and application developer. We are curious, methodical, rational, analytical, and logical. Some of us are also conventional, meaning we're conscientious and conservative.

Answer collected from stackoverflow and other sources, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0