Aleksandras

Results 21 issues of Aleksandras

The javascript.info/translate page shows that the Russian version of the tutorial is **90%** translated, whereas it is **100%** translated (if I am not mistaken)

In the article `L'opérateur de coalescence des nuls '??'` the priority of the operators `??` and `||` was incorrect. This PR corrects that.

review needed

В программировании есть термин «short-circuit evaluation». По-русски «сокращённое вычисление» (альтернативное название - «вычисление по короткой схеме»). Википедия: https://ru.wikipedia.org/wiki/Вычисления_по_короткой_схеме «Сокращённое вычисление» используется во многих языках. Если говорить конкретно про веб, в...

@iliakan Недавно закоммитил исправление двух вопросов в тесте про DOM и работу со страницей (b24f609), с того момента так ничего и не изменилось на сайте. Что делать?

bug

# [Numbers](https://javascript.info/number)

needs +1
P1

# [Patterns and flags](https://javascript.info/regexp-introduction) ECMAScript 2022 introduced a new flag for regular expressions: `d`. Here are some sources describing the behavior of this flag: - https://stackoverflow.com/a/73947884 - https://www.dotnetcurry.com/javascript/ecmascript-2022#:~:text=RegExp%20Match%20Indices - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/hasIndices#:~:text=The%20d%20flag%20indicates%20that%20the%20result%20of%20a%20regular%20expression%20match%20should%20contain%20the%20start%20and%20end%20indices%20of%20the%20substrings%20of%20each%20capture%20group.%20It%20does%20not%20change%20the%20regex's%20interpretation%20or%20matching%20behavior%20in%20any%20way,%20but%20only%20provides%20additional%20information%20in%20the%20matching%20result.

P1

# [Nullish coalescing operator '??'](https://javascript.info/nullish-coalescing-operator) ECMAScript 2021 introduced the **nullish assignment operator `??=`**. ```javascript x ??= y; // x ?? (x = y); ```

P1

According to this SVG: ![image](https://github.com/javascript-tutorial/en.javascript.info/assets/74434545/646f32df-b6fa-4368-a0da-f6647ea8e024) ...There should be one more line in the code below: ```diff let list = { value: 1 }; list.next = { value: 2 }; list.next.next...

P1