Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- let isLocked = false;
- isLocked ? console.log('You will need a key to open the door.') : console.log('You will not need a key to open the door.');
- let isCorrect = true;
- isCorrect ? console.log('Correct!') : console.log('Incorrect!');
- let favoritePhrase = 'Love That!';
- favoritePhrase === 'Love That!' ? console.log('I love that!') : console.log("I don't love that!");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement