Javascript - Comparison (Equal, Order,..) =

About

This page is about comparison operator in Javascript.

List

Order Comparison and Nan

The “invalid number value” NaN is neither greater than nor less than any other value.

var x = 1; 
var y = "bar"; 
console.log( x < y ); // false 
console.log( x > y ); // false 

Equal

Javascript - Equality





Discover More
How to manipulate and show a Date Time in Javascript?

In javascript, date time information is represented in a a date object that: encapsulates the epoch time in milliseconds is timezone-agnostic Date.now() returns the number of milliseconds...
Javascript - Operator (Mathematical, Comparison, ..)

in javascript See



Share this page:
Follow us:
Task Runner