Web site management - M Math.sinh() (Simulated functionality) This function returns
Thursday, November 15th, 2007M Math.sinh() (Simulated functionality) This function returns the sine of the input argument. The argument value must be expressed in radians. Special boundary conditions that affect the results are: Argument Result +infinity NaN -infinity NaN 0 0 NaN NaN The exact value yielded by this function may vary slightly from implementation to implementation, due to differences in the underlying precision of the implementations, math routines, and the specific algorithm selected to evaluate this function. Warnings: . Note that Math.sin(Math.PI/2) may not yield exactly 1. Math object, Math.acos(), Math.asin(), Math.atan(), Math.atan2(), Math.cos(), Math.PI, Math.tan(), Trigonometric function See also: Cross-references: ECMA 262 edition 2 section 15.8.2.16 ECMA 262 edition 3 section 15.8.2.16 Math.sinh() (Simulated functionality) The sinh() function is not available in JavaScript but can be simulated to aid in the porting of existing code. The example demonstrates how to add the sinh() method to the Math object. Example code:
See also: Math.cosec(), Math.cot() Math.sin() (Function) The sine of the passed in value. Availability: ECMAScript edition 2 JavaScript 1.0 JScript 1.0 Internet Explorer 3.02 Netscape 2.0 Netscape Enterprise Server 2.0 Opera 3.0 Property/method value type: Number primitive JavaScript syntax: -Math.sin(aValue) Argument list: aValue An angle measured in radians 1418