InterviewSolution
Saved Bookmarks
| 1. |
Indentify the logical operation in JavaScript |
|
Answer» Answer: In CLASSICAL programming, the LOGICAL OR is meant to manipulate boolean values only. If any of its ARGUMENTS are true , it returns true , otherwise it returns false . In JavaScript, the OPERATOR is a little bit trickier and more POWERFUL. ... If an operand is not a boolean, it's converted to a boolean for the evaluation |
|