Calculate the arctangent of the quotient of its parameters in JavaScript

Description

The following code shows how to calculate the arctangent of the quotient of its parameters.

Example


<!--from   w w  w.  j  av  a 2  s  . com-->
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
  function doMath() {
    var inputNum1 = document.form1.input1.value;
    var inputNum2 = document.form1.input2.value;
    var result = Math.atan2(inputNum1, inputNum2);
    document.form1.answer.value = result;
  }
</script>
</head>
<body>
  <form name=form1>
    Enter First Number: <input type="text" name="input1" size=10>
    <br> Enter Second Number: <input type="Text" name="input2"
      size=10> <br>
    <br> <input type="button" value="Calculate" onClick='doMath()'>
    <br> Answer: <input type="text" name="answer" size=10>
  </form>
</body>
</html>

Click to view the demo





















Home »
  Javascript »
    Javascript Reference »




Array
Canvas Context
CSSStyleDeclaration
CSSStyleSheet
Date
Document
Event
Global
History
HTMLElement
Input Element
Location
Math
Number
String
Window