JavaScript program to find the ASCII value of a character:
function findASCII(char) {
return char.charCodeAt(0);
}
console.log(findASCII("A"));
JavaScript program to find the ASCII value of a character:
function findASCII(char) {
return char.charCodeAt(0);
}
console.log(findASCII("A"));
© 2024 python tutorials. python-tutorials.in