# list.last()

The `list.last()` function returns the last element of [`$list`](#usdlist).

{% code lineNumbers="true" %}

```scss
// Sass.
@use 'sass:list';

// The `list.last()` function.
@function last($list) {
  @return list.nth($list, list.length($list));
}
```

{% endcode %}

{% embed url="<https://github.com/angular-package/sass/blob/main/list/_list.last.function.scss>" %}

### Parameters

#### **`$list`**&#x20;

The list to get the last element from.

### Return

The return value is the last element of [`$list`](#usdlist).

## Examples

```scss
// Use.
@use 'angular-package/sass/list';

// Examples.
@debug list.last(('a', 'b', c, d, 2, 4, 5, (a: 1))); // (a: 1)

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.angular-package.dev/sass/list/list.last.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
