//sample solution
console.log( 2 > 1 ); // is greater than or equal to.
console.log( 4 > 1 ); // is greater than.
console.log( 0 === 0); // is equal to.
console.log( 1 === 1 ); // is less than or equal to.
console.log( "Hi" !== "hi" ); // is not equal to.
console.log( 0 < 1 ); // is less than.
No comments:
Post a Comment