Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Original concise body using ternary operator
- const plantNeedsWater = (day) => {
- return day === 'Wednesday' ? true : false;
- };
- //rewrite it to concise body arrow function in one line
- //remove the parentheses, curly braces, and the return keyword
- const plantNeedsWater = day => day === 'Wednesday' ? true : false;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement