Files
30-seconds-of-code/snippet-template.md
2019-08-13 13:49:13 +03:00

18 lines
267 B
Markdown

---
title: functionName
tags: function,utility,helper,beginner
---
Explain briefly what the snippet does.
Explain briefly how the snippet works.
```js
const functionName = arguments =>
{functionBody}
```
```js
functionName('sampleInput'); // 'sampleOutput'
```