Possible Duplicate:
Javascript === vs == : Does it matter which “equal” operator I use?
Hi folks,
I'm reading about javascript a lot now and I noticed one strange thing for me. Sometimes for comparing two variables is used operator '==' and sometimes '==='. But when I tried both of them in example, I get same result:
if ('string' === 'string')
alert('match ===');
if ('string' == 'string')
alert('match ==');
You can try with jsfiddle
So what is the difference? Has both of these operators any particular sense? I would appreciate if you could write some usefull examples.
thanks a lot for sharing your knowledges.!