I am not that familiar with Javascript, and am looking for the function that returns the UNICODE value of a character, and given the UNICODE value, returns the string equivalent
Example for generating alphabet array here :
const arr = []; for(var i = 0; i< 20; i++) { arr.push( String.fromCharCode('A'.charCodeAt(0) + i) ) }