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

@ -29,5 +29,5 @@ managers.forEach(
return this[id];
}, toHash(users, 'id')))
);
managers; // [ { manager:1, employees: [ { id: 2, first: "Joe" }, { id: 3, first: "Moe" } ] } ]
managers; // [ { manager:1, employees: [ { id: 2, first: 'Joe' }, { id: 3, first: 'Moe' } ] } ]
```