Insert or Modify a Value In a SFHub List
$$myList[index] = value
Index
Numeric value representing the index of SFHub List value to be modified. The first value as index equal to 0.
info
- If the List contains a value at the specified index, the value will be replaced.
- If the specified index is greater than the current number of elements, the List will be populated with null elements and the value will be inserted at the indicated position.
Value
The new value to be recorded.
Example
$$myList[0] = 7
This will modify the first value in the list to 7.