Files
30-seconds-of-code/snippet-template.md
2018-07-08 15:24:11 -07:00

15 lines
217 B
Markdown

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