deterime even or odd with if else statement
let wordL = getLength('Hello World!'); if (wordL%2 == 0) { console.log('The world is nice and even!') } else { console.log('The world is an odd place!'); }