Possible Duplicates:
Difference between === operator == operator
Javascript === vs ==
I have come accross this sign/operator recently a couple of times in javascript code.
if (3 === y + z) {alert('true');}
What does it mean and are there any alternatives?
