JSFiddle - React, Tailwind, and code Playground
JavaScript
var array = [72, 69, 76, 76, 79];
document.write(array.reduce(function(str, charIndex) {
return str += String.fromCharCode(charIndex);
}, ''));
var array = [72, 69, 76, 76, 79];
document.write(array.reduce(function(str, charIndex) {
return str += String.fromCharCode(charIndex);
}, ''));