Conditional Statements

Q

What will happen in these three cases?

if (a=0) {
   //somecode
}
if (a==0) {
   //do something
}
if (a===0) {
   //do something
}

✍: FYIcenter

A
(This question has not been answered yet. If you know the answer, please share it in a comment below.)

2007-02-26, 6385👍, 0💬