JavaScript program to compare two strings are equal or not


Following program shows you how to compare two strings are equal or not.
In this program we get strings from user and compare those strings using == method

var string1 = prompt("Please enter first string:");
var string2 = prompt("Please enter second string:");
if (string1 == string2) {
console.log("Given strings are equal");
} else {
  console.log("Given strings are not equal");
}

Output:

Example1:

Please enter first string:
hello
Please enter second string:
hello
Given strings are equal

Example2:

Please enter first string:
hello
Please enter second string:
HELLO
Given strings are not equal