18 lines
253 B
Markdown
18 lines
253 B
Markdown
---
|
|
title: functionName
|
|
tags: array,intermediate
|
|
---
|
|
|
|
Explain briefly what the snippet does.
|
|
|
|
Explain briefly how the snippet works.
|
|
|
|
```js
|
|
const functionName = arguments =>
|
|
{functionBody}
|
|
```
|
|
|
|
```js
|
|
functionName('sampleInput'); // 'sampleOutput'
|
|
```
|