I first take a string input and change it into a split array, but then I need to change that split array in ASCII to be evaluated. How do I do that?
A string input is technically already an array of characters.
You can do the following
asciiKeys = [];
for (var i = 0; i < string.length; i ++)
asciiKeys.push(string[i].charCodeAt(0));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With