sraer Emne 3 c#

This commit is contained in:
Geir Okkenhaug Jerstad 2024-11-12 18:58:11 +01:00
parent 0d48ecd36c
commit 1e66eb74ff
30 changed files with 322 additions and 2 deletions

View file

@ -8,7 +8,6 @@ let string2 = "The quick brown fox jumps over the lazy dog"
function isPangram(str) {
const lowerStr = str.toLowerCase();
if (letters.split('').every(char => lowerStr.includes(char))){
console.log('ja')
return true;