'use strict'
function titleCase(title, minorWords) {
title = title.split(' ')
minorWords = minorWords.split(' ')
title =
title.map((word) => {
word = word.toLowerCase()
word[0] = word[0].toUpperCase()
})
console.log(title)
}
console.log(titleCase('a clash of KINGS', 'a an the of'))