logical and conditional operators js code example
Example 1: js logical operators
Javascript Logical Operators
&& Logical and
|| Logical or
! Logical not
Example 2: examples of Conditional Operator js
var age = 19;
var canDrive = age > 16 ? 'yes' : 'no';