JSFiddle - React, Tailwind, and code Playground

by irinablue

JavaScript

const message = 'Test';
const res = [...message].map(item => item.charCodeAt(0));
//String.fromCharCode(123)

const res2 = res.map(item => item + 13);

console.log(res, res2);
console.log(String.fromCharCode(71))

// A = 65
// Z = 90
// a = 97
// z = 122