if statement string javascript code example
Example 1: if string javascript
if (typeof myVar === 'string') { /* code */ };
Example 2: or statment javscript
if (x === 5 || x === 8)
console.log("x is eaqual to 5 OR 8")
Example 3: javascript conditional
// example:
age >= 18 ? `wine` : `water`;
// syntax:
// <expression> ? <value-if-true> : <value-if-false>