Fix quotes

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-10-20 23:29:39 +03:00
parent caa67e2a49
commit fd68c221da
15 changed files with 22 additions and 21 deletions

View File

@ -19,5 +19,5 @@ reduceWhich([1, 3, 2], (a, b) => b - a); // 3
reduceWhich(
[{ name: 'Tom', age: 12 }, { name: 'Jack', age: 18 }, { name: 'Lucy', age: 9 }],
(a, b) => a.age - b.age
); // {name: "Lucy", age: 9}
); // {name: 'Lucy', age: 9}
```