javascript compare strings code example

Example 1: javascript compare number to string

let string = "1";
let number = 1;
if (parseInt(string) === number){
  	// STRING AND NUMBER MATCHES
}
if (string == number){
  // STRING AND NUMBER MATCHES ALSO BECAUSE == instead of ===, means it won't compare datasets, only the content
}

Example 2: compare strings js

const s1 = 'learn';
const s2 = 'today';

console.log(s1 === 'learn');  // true
console.log(s1 === s2);       // false

Example 3: equal to or more than javascript

//Equal to or more than
a >= b
//Equal to or less than
a <= b

Example 4: javascript compare strings

console.log(NaN===NaN);//false

Example 5: how to compare two strings in javascript if condition

var string1 = "Hello World";
var string2 = "Hello world.";
if (string1 === string2) {
  console.log("Matching strings!");
}
else {
  console.log("Strings do not match");
}

Example 6: string comparison in javascript

console.log("10" == "10"); //True
console.log(parseInt(10) == 10); // True Best practice

Tags:

Misc Example