You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.split(".") // превращаем строку в массив, разбивая её на элементы по '.'
.map((byte, index) => Number(byte) << ((3 - index) * 8)) // сдвигаем каждый байт на нужное количество битов в соответствии с правилами, указанными выше
.reduce((accum, current) => accum + current, 0); // суммируем все, чтобы получить окончательное число