Char-to-ASCII

Published by Nomove in

Create a function that returns the ASCII value of the passed in character.

Examples

CharToASCII('S') ➞ 83

CharToASCII('m') ➞ 109

CharToASCII('1') ➞ 49

CharToASCII('a') ➞ 97

Notes

  • Don't forget to return the result.
  • If you get stuck on a challenge, find help in the Resources tab.
  • If you're really stuck, unlock solutions in the Solutions tab.
Watch a quick demo on how Edabit works.