Update use-arrow-functions-to-write-concise-anonymous-functions.english.md

This commit is contained in:
Prabhat Kumar Sahu
2018-10-13 17:25:03 +05:30
committed by Kristofer Koishigawa
parent e8da1be92e
commit 393489565e

View File

@ -63,6 +63,9 @@ var magic = function() {
<section id='solution'>
```js
// solution required
const magic = () => {
"use strict";
return new Date();
};
```
</section>