it is possible to remove specific element from lists. i tried this functions for remove element
pop() = remove last element
$remove(index) = n
The $.remove
feature has been replaced with $.delete
.
You can call it like so:
this.$delete(this.someItems, itemIndex)
.
It works on Object
as well as Array
. With objects, you need to use a keyed object. With arrays, you pass in the index of the item you want to delete.
Here is a fiddle example: https://jsfiddle.net/james2doyle/386w72nn/
EDIT
I added an example for an array as well