DEV Community

Cover image for JavaScript Comparisons – JavaScript Series – Part 5
Muhammad Ali (Nerdjfpb)
Muhammad Ali (Nerdjfpb)

Posted on • Originally published at blog.nerdjfpb.com

JavaScript Comparisons – JavaScript Series – Part 5

There are some JavaScript types that we’ll discuss right now. We’ll work on that later. They are – Undefined, Null, Symbol, Object

Today we are going to learn comparisons in JavaScript.

Lets start with checking equal. In JavaScript we need to use === for checking if they are same or not.

Alt Text

To find out if they are not same we use !== This gives us the boolean result

Alt Text

To find some value is getter than some value we use >

Alt Text

To find some value is getter than and equal to some value we use >=

Alt Text

To find some value is smaller than some value we use <

Alt Text

To find some value is smaller than and equal to some value we use >=

Alt Text

Do you understand the comparisons signs now in JavaScript ?

You can see the graphical version here

Source Codes - { Check commits }

GitHub logo nerdjfpb / javaScript-Series

A tutorial for JavaScript Beginners

javaScript-Series

A tutorial for Absolute Beginners of JavaScript.

You can find the total pdf in - Here

You can check the commits to find the part by part codes.

Blogs

Day 1
  • Day 1 - What is JavaScript?
Day 2
  • Day 2 - JavaScript Types?
Day 3
  • Day 3 - Javascript Types Cont.
Day 4
  • Day 4 - Javascript Types Cont.
Day 5
  • Day 5 - Javascript Comparisons
Day 6
  • Day 6 - Javascript Variables
Day 7
  • Day 7 - More About Variables
Day 8
  • Day 8 - Conditional Statement
Day 9
  • Day 9 - More Conditional Statement
Day 10
Day 11
Day 12
Day 13
Day 14
Day 15
Day 16
Day 17

Originally it published on nerdjfpbblog. You can connect with me in twitter or linkedin !

Top comments (0)