public/subjects/what-else
Clement Denis 3cdfd1a34c discovery-piscine: update exercises and test 2021-04-12 03:15:36 +01:00
..
README.md discovery-piscine: update exercises and test 2021-04-12 03:15:36 +01:00

README.md

What else ?

The else keyword

It allows to execute alternative code if the condition do not match:

if (isEnough) {
  console.log('this is enough :)')
} else {
  console.log('I want more !!')
}

it is like an if but you don't have a condition, just add a scope after {} and write code !

Instructions

You must check if 'George Clooney' is included in the provided array vips

if he is, console.log the string 'What else ?' otherwhise log 'The only failure is not to try.'

Notions