FUNDAMENTALS
Complete the method that takes a boolean value and return a "Yes" string for true, or a "No" string for false.
const boolToWord = bool => (bool ? 'Yes' : 'No')FUNDAMENTALS
Complete the method that takes a boolean value and return a "Yes" string for true, or a "No" string for false.
const boolToWord = bool => (bool ? 'Yes' : 'No')