---
id: 5952e353-e25e-4a74-95ce-8099891212c5
title: Array.of()
---

# Description

This returns an array of the passed parameters

# Syntax

``` javascript
console.log(Array.of(1, 2, 3, 4)) // [1, 2, 3, 4]
```