Lists
Last N Elements
4min
overview returns the last n elements from a given list parameters inputs input a list ( list\<object> ) input the number of elements to receive ( int ) sorted (dropdown) unsorted, sorted ascendingly, sorted descendingly outputs results ( list\<object> ) the final list important notes ensure the input list contains enough elements to retrieve the last n elements the output list will contain the last n elements based on the specified sorting order, if any