mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Clement Denis
3cdfd1a34c
|
4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago |
README.md
Special Promo 🎟️
&&
(the AND operator)
This operator is used to group conditions:
if (user.role === 'admin' && user.available === 'now') {
console.log('Admin', user.name, 'is available and will help you now !')
}
Here, the code will only show the message if both conditions are true.
Instructions
Your traveling company have a new special promo for members between 18 and 25 years old.
Write the if
condition that will check if the user can benefit the promotion:
user.age
must be at least18
user.age
must be lesser or equal to25
user.activeMembership
must betrue
If all of those conditions are true, console.log
the message
You can benefit from our special promotion