Как вернуть символ, связанный с кодом символа JavaScript

console.log(String.fromCharCode(65));
// expected output: "A"
Mr.B