You are viewing a single comment's thread. Return to all comments →
JS
function pangrams(s) { return new Set(s.toUpperCase().split("").filter((char) => char !== " ")).size === 26 ? "pangram" : "not pangram"; }
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 →
JS