Switch case in Java Script | JS for Beginners - 21 | code io - Tamil

preview_player
Показать описание
In this video from the series of JS for Beginners, we will learn about What are the Switch case in Java Script.

Follow us on
Instagram

LinkedIn
Рекомендации по теме
Комментарии
Автор

Bro, ur html 5 full course vera lvl sprb clr explanation anc really intrested, enaku adhe mari css pathi full course solluwingala ?

FathimaZeenath-hb
Автор

let o = "*";a = 1 ; b =2 ;
switch(o){

case "+":
console.log(a+b);
break;
case "-" :
console.log(a-b);
break;
case "/":
console.log(a/b);
break;
case "*":
console.log(a*b);
break;
default:
console.log('no experession');
}

aravindraj