write a program in javascript to demonstrate the use of And and NOT operator
Answers
Answered by
1
Explanation:
&& is known as AND operator. It checks whether two operands are non-zero (0, false, undefined, null or "" are considered as zero), if yes then returns 1 otherwise 0. || is known as OR operator. It checks whether any one of the two operands is non-zero (0, false, undefined, null or "" is considered as zero).
Answered by
5
Hope it helps
This is the answer
Attachments:
Similar questions