how to compare two strings in javascript if condition

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

Also in JavaScript: