JavaScript Comparison Operators

JavaScript comparison operators are used to compare the two operands. JavaScript Comparison Operators List: Operator Description Example == Is equal to 10==30 = false === Identical (equal and of the same type) 10==40 = false != Not equal to 20!=20 = true !== Not Identical 20!==20 = false > Greater than 30>10 = true >= … Read more