You are viewing a single comment's thread. Return to all comments →
my JavaScript solution
function pangrams(s) { const isPangram = s => new Set(s.toLowerCase().match(/[a-z]/g)).size === 26 ? "pangram" : "not pangram"; return isPangram(s); }
Seems like cookies are disabled on this browser, please enable them to open this website
Pangrams
You are viewing a single comment's thread. Return to all comments →
my JavaScript solution