Show an example of the if() statement:
const age = prompt("age?")
if (age < 18) {
console.log('Sorry, not old enough');
{ else }
console.log('Welcome');Show an example of the if() statement:
const age = prompt("age?")
if (age < 18) {
console.log('Sorry, not old enough');
{ else }
console.log('Welcome');==
Soft equals
===
Hard equals
!=
Soft not equal
!==
Not equal value or not equal type;
>
Greater than
Lesser than
> =
Greater than or equal to
<=
Lesser than or equal to
==
Soft equals
===
Hard equals
!=
Soft not equal
!==
Not equal value or not equal type;
>
Greater than
Lesser than
> =
Greater than or equal to
<=
Lesser than or equal to