/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/javascript/js-501-22-067/main.js
16 строк
744 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
const formatter = new Intl.ListFormat("ru", { style: "long", type: "conjunction" }); console.log(formatter.format(["яблоки"])); // "яблоки" console.log(formatter.format(["яблоки", "груши"])); // "яблоки и груши" console.log(formatter.format(["яблоки", "груши", "апельсины"])); // "яблоки, груши и апельсины" // Другие типы const disjunction = new Intl.ListFormat("ru", { type: "disjunction" }); console.log(disjunction.format(["да", "нет"])); // "да или нет" const unit = new Intl.ListFormat("ru", { type: "unit" }); console.log(unit.format(["метр", "килограмм"])); // "метр, килограмм"