Files
30-seconds-of-code/snippet-template.md
Angelos Chalaris e3d1a2f126 Polished up template
2017-12-27 17:06:13 +02:00

15 lines
216 B
Markdown

### functionName
Explain briefly what the snippet does.
Explain briefly how the snippet works.
```js
const functionName = arguments =>
{functionBody}
```
```js
functionName('sampleInput') // 'sampleOutput'
```