The replaceItem() method of the SVGStringList interface replaces an existing item in the list with a new item. The inserted item is the item itself and not a copy.
replaceItem(newItem, index)newItemThe string to add to the list.
indexA non-negative integer that specifies the index of the item to delete.
The string that was added the list.
NoModificationAllowedError DOMExceptionThrown if the SVGStringList corresponds to a read-only attribute or when the object itself is read-only.
IndexSizeError DOMExceptionThrown when the index is out of bounds for the list.