Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Every one line solution in Creative category for [old] Pangram by ZweiStein
var checkPangram = t => "abcdefghijklmnopqrstuvwxyz".split("").every(x => (t.toLowerCase()).includes(x));
Aug. 14, 2017
Comments: