JavaScript Tutorials for Beginners - Part 7 - How to Use JavaScript Conditional Statements

preview_player
Показать описание

During this JavaScript training tutorial for beginners video, discover how to use conditional statements while programming using JavaScript.

Stay in touch:

If you enjoyed the video, please give a "thumbs up" and subscribe to the channel ;-)
Рекомендации по теме
Комментарии
Автор

When hes describing switch make shure to add the } behind the play button

AMaisiveNerd
Автор

And also case "dog":
alert('Your pet is a " + pet);
break;

didnt work so i typed

case "dog":
alert('Your pet is a ' + pet);
break;

AMaisiveNerd