toTitle
const toTitle = str => { return str.split(/[\W_]+/) .map(word => word.replace(/^\w/, first => first.toUpperCase())) .join(' ') }