Question: JavaScript Question: 3. isPangram Write a function called isPangram which returns true if every single lower-cased letter of the English alphabet is used. Every character
JavaScript Question:

3. isPangram Write a function called isPangram which returns true if every single lower-cased letter of the English alphabet is used. Every character in the string will be lowercase so you do not need to worry about upper and lower case. isPangram ("sphinx of black quartz, judge my vow"); // true isPangram("the quick brown fox jumps over the lazy dog"); // true isPangram("this does not have all letters"); // false isPangram("this will not work as well"); // false
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
