Computer Science, asked by Yash0320, 13 hours ago

How can I type the OR operator || (also called pipe)?In JavaScript

Answers

Answered by weenr123
0

Answer:

The logical OR operator ( || ) returns the boolean value true if either or both operands is true and returns false otherwise. The operands are implicitly converted to type bool before evaluation, and the result is of type bool

Explanation:

Similar questions