short circuit
RU: короткое замыкание
Stopping evaluation as soon as the result is determined. Example: `arr.some(x => x < 0)` stops and returns true on the first negative, without checking remaining elements.
RU: короткое замыкание
Stopping evaluation as soon as the result is determined. Example: `arr.some(x => x < 0)` stops and returns true on the first negative, without checking remaining elements.