> For the complete documentation index, see [llms.txt](https://danfo.jsdata.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://danfo.jsdata.org/api-reference/series/series.iat.md).

# Series.iat

> danfo.Series.iat(index)

| Parameters | Type   | Description | Default |
| ---------- | ------ | ----------- | ------- |
| index      | Number | index value |         |

**Return:** Scalar

{% tabs %}
{% tab title="Node" %}

```javascript
const dfd = require("danfojs-node")

let sf = new dfd.Series(["Apples", "Mango", "Banana", "Pear"],
    { index: ["a", "b", "c", "d"] }
)

sf.iat(1)

// "Mango"
```

{% endtab %}
{% endtabs %}
