#6 JavaScript for Beginners: Booleans, Comparison and Logical Operators

preview_player
Показать описание
Booleans are the primitive data types that can either be true or false. The Boolean values are mostly used for Comparison and Logical Operators.

In this video, we will learn about the Boolean data type which allows us to store true and false. Then, we will learn about comparison and logical operators which are used in decision making in programming. We will explain each topic with an example to make it clear and understandable so watch the full episode to have a clear understanding.

~

Timestamps:
0:21 JavaScript Boolean Expression
02:44 Comparison Operators
03:09 Greater Than Operator
03:59 Less Than Operator
04:33 Greater Than or Equal Operator
05:18 Equal to Operator
07:33 Strict equal to Operator
08:53 Comparison Between Variables
10:30 JavaScript Logical Operators
10:50 JavaScript AND Operator
12:39 JavaScript OR Operator
13:18 JavaScript NOT Operator
14:23 JavaScript Boolean Expression
15:00 Quiz

Find Programiz elsewhere:

---------------------------------------------------

#6 JavaScript for Beginners: Booleans, Comparison and Logical Operators

#javascript #booleans#programiz #learnprogramming #true #false
Рекомендации по теме
Комментарии
Автор

Video Quiz:

Q. Which of the following code returns true?
a. 5 == -5
b. 5 == '5'
c. 5 === '5'
d. 5 === -5

programizstudios
Автор

Just starting out coding and enjoying this video so far, my first one. thank you. i am following a App Academy free course on line and using this video to supplement my learning

basil_b_vegan
Автор

this video was very helpful thank you so much

nahjailitt
Автор

Very helpful video . Thank you so much for great content free of cost. ❤️

vikashranjanofficials
Автор

Thanks! Ps age and height should be let variables ;)

wrky
Автор

Can You Please Make Your Programiz Pro Courses Free Trial Accessible Without Need of A Credit Card or PayPal? In Nepal, Credit Cards are not available and none of us can actually utilize your pro content easily. Many Nepali Students can't even afford that expensive course but looks like you guys only care about foreign people and they money they will pay you to buy your course. Your efforts on making a good course is actually pointless for people of your own country.

thatsawesome.
Автор

Frequent ads makes me too much boring to enjoy your tutorial..

MdHabib-hvjr
Автор

let likeVideo = true;
let commentVideo = true;
console.log(likeVideo && commentVideo);

output: true

peer