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

# prepend

```erlang
prepend :: (Any item, Array input) => Array output
```

## description

Returns a new `Array` after adding the item at the beginning of the input array.

## example

```javascript
import { prepend } from 'conductor'

const numbers = [1, 4]
prepend(3, numbers) // [3, 1, 4]
```
