Що поверне даний код, якщо (aValue < bValue) = true, а direction = 'desc' ?
if (aValue < bValue) return direction === 'asc' ? -1 : 1
Як додати фоновий колір до всіх елементів <h1>?
This question is based on the third slide of the video above (minutes 1:30-3:00).
Which sectors of the economy have had the highest unemployment rate in most years?
export default {
data() {
return {
some: [
{id: 1, mess: 'first'},
{id: 2, mess: 'second'},
{id: 3, mess: 'third'}
],
};
},
Як називається ця властивість?
};
This question is based on the third slide of the video above (minutes 1:30-3:00).
What does it mean that technological development is a "bottom-up" change?
Що робить оператор "===" в JavaScript?