chore(i18n,learn): processed translations (#48693)

This commit is contained in:
camperbot
2022-12-08 09:40:53 -08:00
committed by GitHub
parent d266e5d067
commit ef5d93b67f
61 changed files with 450 additions and 450 deletions

View File

@@ -36,7 +36,7 @@ const _callback = element => element.toUpperCase();
assert(JSON.stringify(_test_s.map(_callback)) === JSON.stringify(_test_s.myMap(_callback)));
```
`[1, 1, 2, 5, 2].myMap((element, index, array) => array[index + 1] || array[0])` should return `[1, 2, 5, 2, 1]`.
`[1, 1, 2, 5, 2].myMap((element, index, array) => array[index + 1] || array[0])` dovrebbe restituire `[1, 2, 5, 2, 1]`.
```js
const _test_s = [1, 1, 2, 5, 2];