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.
To find out if they are not same we use !==
This gives us the boolean result
To find some value is getter than some value we use >
To find some value is getter than and equal to some value we use >=
To find some value is smaller than some value we use <
To find some value is smaller than and equal to some value we use >=
Do you understand the comparisons signs now in JavaScript ?
See the codes – https://github.com/nerdjfpb/javaScript-Series