Let's try mozilla's fixedCharAt function

master
Chloe Fontenot 🏳️‍⚧️ 2023-04-30 18:59:53 +07:00
parent ec78f86ff7
commit 35af3ce870
1 changed files with 1 additions and 1 deletions

@ -226,7 +226,7 @@ function charIterate(input) {
charIterateState = 0; charIterateState = 0;
} }
} }
console.log(charIterateState, input.charAt(charIterateState)); console.log(charIterateState, fixedCharAt(input, charIterateState));
return charIterateState; return charIterateState;
} }