Merge pull request #59 from svenluijten/patch-1

use const in snippet template
This commit is contained in:
Angelos Chalaris
2017-12-13 11:38:42 +02:00
committed by GitHub

View File

@ -3,7 +3,7 @@
Explain briefly how the snippet works
```js
var functionName = arguments =>
const functionName = arguments =>
{functionBody}
// functionName(sampleInput) -> sampleOutput
```