fromCharCode() method using string in JS

fromCharCode() method using string in JS


<!DOCTYPE html>
<html>
<head>
<title>Test page</title>
<script type="text/javascript">

/*fromcharCode will return the ASCII CODE of the character fixed in the sequence */

var b = String.fromCharCode(65);
console.log(b);



</script>

</head>
<body>
<h1></h1>
</body>
</html>




Comments

Popular posts from this blog