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
Post a Comment
I WOULD APPRECIATE IF YOU LEAVE A COMMENT OR YOUR FEEDBACK HERE !!!