🎈(
Size: a a a
🎈(
AV
🎈(
AV
🎈(
A
ЯМ
M
AV
МК
let str = 'abcde';
(str[0] === 'a')
? console.log('Да')
: console.log('Нет');
МК
AV
function oneSlickItemInArray() {
const $oneSlickElem = $('.images-product .slick-slide');
if (arr[i].includes($oneSlickElem)) {
$('.thumbs-product').hide();
}
}
МК
В переменной month лежит какое-то число из интервала от 1 до 12. Определите в какую пору года попадает этот месяц (зима, лето, весна, осень).
Решениеlet month = prompt('Введите число от 1 до 12');
(month >= 1 && month <= 3)
? console.log("Весна")
: (month >=4 && month <= 6)
? console.log("Лето")
: (month >= 7 && month <= 9)
? console.log("Осень")
: (month >= 10 && month <= 12)
? console.log("Зима")
: console.log("Ошибка числа, пожалуйста введите число от 1 до 12");
🎈(
🎈(
Д
AV