JavaScript Practice Questions And Answer

Problem: Write a program accepts a character and find out corresponding ASCII value.
Solution:
<html>
 <head>
  <script>
   function ascii()
   {
    var inputBox = document.getElementById("input1")
    var input = inputBox.value
    var asciiCode = input.charCodeAt(0)
    document.write("Hello " + asciiCode) 
   }
  </script>
 </head>
    <body>
      <input type="text" placeholder="enter alphabet" id="input1"/> <br>
      <input type="button" value="Go" onclick="ascii()"/>
    </body>
</html>

Contact Us

Our Address

Office no.- 401,Shekhar Central Building ,Palasiya, Pin-code:452001, Indore

Email Us

contact@codebetter.in

Call Us

+91 88230 75444, +91 99939 28766

Loading
Your message has been sent. Thank you!