Is there a more effective way of generating ascii values? I'm trying to emulate this same pattern in JavaScript that I've written in Bash.
Bash
read -ra chars <<< $(echo -e "$(printf '\\x%x ' {33..126})")
JS
var chars = [];
for(var chr = 33; chr < 126; chr++) {
chars.push(String.fromCharCode(chr));
}