I have a set of letters made from an array and I want to see if they have any characters from [a-z] in it.
let letterArr = ['a','d','w','e','r','q','y', 'w'];
let mySet = new Set(letterArr);
console.log(mySet.has('a')); //true
console.log(mySet.has('q')); //true
Could i search for a range of characters or numbers using has()
?