concise body arrow functions javascript

JavaScript
const plantNeedsWater = day => day === 'Wednesday' ? true : false;

//If only 1 Parameter no () needed
//Single line return is implicit
//Single line no {} needed
Source

Also in JavaScript: