myPhone.addEventListener('keyup', function(evt){
let length = this.value.length
if (length < 9) msg.textContent = 'маловато будет!'
else if (length == 9) msg.textContent = 'норм!'
else if (length > 9 && length < 16) msg.textContent = 'э, хватит'
else if (length > 15 && length < 31) msg.textContent = 'больше не надо'
else if (length > 30) msg.textContent = 'остановись, демон!'
})
https://jsfiddle.net/5v7cdb5y/