let first = Symbol("Symbol"); let second = Symbol("Symbol"); /** * Even though they are the same, they are different because * they are Symbol type. * */ //If we try to compare two symbols we' ll always get false if (first === second) { return true; } else { return false; } //Result: //false