pop()
Remove the last item from an API instance's result set.
Description
Just as with Javascript arrays', since the DataTables API object is "array like", items can be removed from a result set using this method. Popping a result, pops it off the end. The API instance's result set is reduced in length by 1 and the item that was removed is returned from the function call. shift()
can be used to perform the same action, but at the start of the array, if required.
This method is a proxy for the Javascript Array.prototype.pop
method and is provided as a utility method for the DataTables API. For more information about the original method, please refer to the Mozilla MDN documentation for pop
.
Type
function pop()
- Description:
Remove the last item from an API instance's result set.
- Returns:
Any
Item removed form the result set (was previously the last item in the result set).
Example
Get the last item from a column.:
var table = new DataTable('#myTable');
var data = table.column(0).data();
var lastItem = data.pop();
alert('Last item in the result set was: ' + lastItem);