if condition in javascript with and operator and conditional operator code example
Example: examples of Conditional Operator js
var age = 19;
var canDrive = age > 16 ? 'yes' : 'no';
var age = 19;
var canDrive = age > 16 ? 'yes' : 'no';