I have converted a string into their ascii using string.charCodeAt(), but now that I have completed adding/subtracting the values I want to convert them from ASCII back to letters and a string.
I am looking to convert the following array back into their char letters and eventually a string using JavaScript.
asciiKeys= [70, 69, 69, 69, 32, 67, 66, 68, 69, 32, 67, 65, 77, 67];
I tried using the following, but it keeps stating that it is not a function:
for (var j=0;j<str.length;j++){
newAsciikeys.push(asciiKeys[j].fromCharCode(0));
}