Ascii code into character

Inputs

  • ascii code

Outputs

  • Character

Algorithm

/**
 * Ascii code into character: 
 *
 * @param x1 ascii code
 * @return {Array}
 */
function neuron585(x1)
{
return [String.fromCharCode(x1)];
}

console.log(neuron585(459));

Create your family tree for free