Assalomu aleykum va rahmatulloxi va barakatux. Ustoz Ollox rozi bo`lsin. Amaliy mashg`ulotlarniham qo`shib zo`r ish qilgansiz. Odam o'zini tekshirib boradi. Esdan chiqqan bo`lsa(esdan chiqishi tabiiy) takrorlab oladi. Katta rahmat Farhod aka. Darslar 2021 ni ohiridaham aktivniy.
Assalomu alaykum, Alloh rozi bo'lsin, hayrli qilsin. Amaliy mashg'ulot bo'lgani zo'r bo'libdi. O'rganib ketaverib esdan chiqargandan ko'ra mustahkamlanib borar ekan. Xar bir darsga kommen bildirib borish ham qandaydur motivatsiya ham ekan. Ustoz shogird birga dars qilgani kabi.
mana ustoz video ga qaramasdan funcsiya orqali chiqardim 1- misolni function square(name1,name2){ if (name1 >name2 ){ console.log('birinchi amal katta'); } else if (name2 > name1){ console.log('ikkinchi element katta'); } } resultSquare = square(4,5); console.log(resultSquare);
Assalomu aleykum aka 2-vazifani yechimini boshqacha topdim.Lekin huddi siz yozgandik ishladi. let width=30; let height=20; function isLandscape(width,height){ return (width>height) } console.log(width>height);
let a1 = 19; let a2 = 19; function minMax(n1, n2) { if (n1 > n2) { console.log(n1); } else if (n1 == n2) { console.log("equal numbers"); } else { console.log(n2); } } minMax(a1, a2); shunday qilsa ham bo'ladimi
Assalomu aleykum va rahmatulloxi va barakatux. Ustoz Ollox rozi bo`lsin. Amaliy mashg`ulotlarniham qo`shib zo`r ish qilgansiz. Odam o'zini tekshirib boradi. Esdan chiqqan bo`lsa(esdan chiqishi tabiiy) takrorlab oladi. Katta rahmat Farhod aka. Darslar 2021 ni ohiridaham aktivniy.
Assalomu alaykum, Alloh rozi bo'lsin, hayrli qilsin. Amaliy mashg'ulot bo'lgani zo'r bo'libdi. O'rganib ketaverib esdan chiqargandan ko'ra mustahkamlanib borar ekan. Xar bir darsga kommen bildirib borish ham qandaydur motivatsiya ham ekan. Ustoz shogird birga dars qilgani kabi.
Ака рахмат сизга бепул курс олиб борвотганингиз учун!
Барака топинг
Rahmat Alloh rozi bòlsin baraka toping
Assalomu alaykum. Alloh rozi bo'lsin. katta rahmat
Alloh rozi bo'lsin.
rahmat sizga aka
function kattaSon(qiymat, qiymat2){
if(qiymat > qiymat2){
console.log(qiymat);
} else{
console.log(qiymat2)
}
}
kattaSon(8, 12);
function getMax(a, b) {
return Math.max(a, b);
}
console.log(getMax(45, 100));
const numb = [78, 400];
function getMax() {
return Math.max(...numb);
}
console.log(getMax());
mana ustoz video ga qaramasdan funcsiya orqali chiqardim 1- misolni
function square(name1,name2){
if (name1 >name2 ){
console.log('birinchi amal katta');
}
else if (name2 > name1){
console.log('ikkinchi element katta');
}
}
resultSquare = square(4,5);
console.log(resultSquare);
function maxnum(x,y) {
if (x>y) {
console.log(x +" katta son");
} else {
console.log(y+ " katta son");
}
}
maxnum (3,5);
let a1 = 15;
let a2 = 30;
let minMax = a1 > a2 ? a1 : a2;
console.log(minMax);
Assalomu aleykum aka 2-vazifani yechimini boshqacha topdim.Lekin huddi siz yozgandik ishladi.
let width=30;
let height=20;
function isLandscape(width,height){
return (width>height)
}
console.log(width>height);
let result = image(5, 6);
let result1 = image(7, 6);
let result2 = image(6, 6);
console.log(result, result1, result2);
function image(width, height) {
return (width > height);
}
let width = 500;
let height = 300;
let result = isLandscape(width, height);
console.log(result);
function isLandscape(width, height){
return (width > height) ? true : false;
}
function kattakichik(a,b){
if((a-b)>0){
console.log(a);
}
else if((a-b)
let result = isLandscape(500,400);
console.log(result);
function isLandscape (width, length) {
return (width>length);
}
let num = 1;
let num1 = 2;
if (num>num1) {
console.log(num)
} else {
console.log(num1)
}
2.
function isLandScape(width,height){
if(width>height)
return true;
else
return false;
}
let natija=isLandScape(600,500);
console.log(natija);
function isLandScape(w, h) {
if (w > h) {
return true;
} else {
return false;
}
}
console.log(isLandScape(140, 45));
let a1 = 19;
let a2 = 19;
function minMax(n1, n2) {
if (n1 > n2) {
console.log(n1);
}
else if (n1 == n2) {
console.log("equal numbers");
}
else {
console.log(n2);
}
}
minMax(a1, a2);
shunday qilsa ham bo'ladimi
let result = 0;
let i=1;
do {
if ((i-1)%2)
result = result + i;
console.log(result)
i++;
} while (i