Javascript – Պայմանի օպերատորներ – Conditions (if, else)



Javascript – Պայմանի օպերատորներ – Conditions (if, else)

Javascript - Պայմանի օպերատորներ - Conditions (if, else)

Թեմաներ
—————–

* Պայմաններ if և else-ով

Կոդի օրինակ
————————-

let x = 3;
if(x === 3) {
alert(“x is equal to 3”);
} else {
alert(“x is not equal to 3”);
}

Հղումներ
—————-

Javascript դասընթաց: https://youtube.com/playlist?list=PLkVo56yGU5Pqld7f3jtoE-g_755aPT0NV

Ֆեյսբուքյան էջ: https://www.facebook.com/roubenmeschian

Ֆեյսբուքյան խումբ: https://www.facebook.com/groups/1647352038759065

Կոդերի խմբագիր: https://roubenmeschian.com/editor/

Comments are closed.