The fromCharCode(..) function is used to return the letter based on the ASCII code passed to it.
Say, if we want to know the letter/character for the ASCII code 114.
<html>
<body>
<script>
var pos = String.fromCharCode(114)
document.write("The Letter for ASCII code 114 is : ", pos)
</script>
</body>
</html>