function inArray(arr, str) {
return arr.filter(function(item) {
return item.indexOf(str) !== -1
})
}
var words = inArray(libraryLetter, 'a')
if (words.length > 0 ) {
console.log(words)
} else {
console.log('Совпадений не найдено')
}
.circle {
border-radius: 50%;
box-shadow: 0 0 0 9999px rgba(0, 0, 0, .5);
}