Files
30-seconds-of-code/snippet-template.md
2020-04-16 23:07:33 +03:00

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'
```