/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/javascript/js-501-15-002/main.js
16 строк
428 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
// Умножение const multiply = (a, b) => a * b; // Возведение в квадрат const square = x => x * x; // Проверка чётности const isEven = num => num % 2 === 0; // Получение длины строки const getLength = str => str.length; console.log(multiply(4, 5)); // 20 console.log(square(5)); // 25 console.log(isEven(10)); // true console.log(getLength("JavaScript")); // 10