How following code works?
var result = ["test"] == "test";
console.log(result); // returns true
I have tested in chrome and ["string"] == "string"` returns true.
How following code works?
var result = ["test"] == "test";
console.log(result); // returns true
I have tested in chrome and ["string"] == "string"` returns true.