Update write-arrow-functions-with-parameters.english.md

This commit is contained in:
Prabhat Kumar Sahu 2018-10-13 17:34:42 +05:30 committed by Kristofer Koishigawa
parent 393489565e
commit 1a2843934f

View File

@ -60,6 +60,11 @@ console.log(myConcat([1, 2], [3, 4, 5]));
<section id='solution'>
```js
// solution required
const myConcat = (arr1, arr2) => {
"use strict";
return arr1.concat(arr2);
};
// test your code
console.log(myConcat([1, 2], [3, 4, 5]));
```
</section>