SVGPointList: getItem() method

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

The getItem() method of the SVGPointList interface gets one item from the list at the specified index.

Syntax

js
getItem(index)

Parameters

index

The index of the item to return.

Return value

A DOMPoint object.

Exceptions

IndexSizeError DOMException

Thrown if the index passed in is greater than the number of items in the list.

Examples

The following example shows an SVG which contains a with five coordinate pairs. The DOMPoint at index 0.

html

  

js
const example = document.getElementById("example");
console.log(example.points.getItem(0));

Specifications

Specification
Scalable Vector Graphics (SVG) 2
# __svg__SVGNameList__getItem

Browser compatibility