Check if the Sentence Is Pangram

EasyHash TableString

Solution

export function checkIfPangram(sentence: string): boolean {
  return new Set(sentence).size === 26;
}