Skip to main content

removeByIndex (Function)

Function returns the updated list after removing the element with the specified index.

Syntax

<OBJECT> list:removeByIndex(<OBJECT> list, <INT> index)

Query Parameters

NameDescriptionDefault ValuePossible Data TypesOptionalDynamic
listThe list that needs to be updated.OBJECTNoYes
indexThe index of the element that needs to removed.INTNoYes

Example 1

list:removeByIndex(stockSymbols, 0)

This returns the updated list, stockSymbols, after removing value at 0 th index.