- CoffeeScript 教程
- CoffeeScript - 首页
- CoffeeScript - 概述
- CoffeeScript - 环境
- CoffeeScript - 命令行实用程序
- CoffeeScript - 语法
- CoffeeScript - 数据类型
- CoffeeScript - 变量
- CoffeeScript - 运算符和别名
- CoffeeScript - 条件
- CoffeeScript - 循环
- CoffeeScript - list comprehension
- CoffeeScript - 函数
- CoffeeScript 面向对象
- CoffeeScript - 字符串
- CoffeeScript - 数组
- CoffeeScript - 对象
- CoffeeScript - 范围
- CoffeeScript - splat
- CoffeeScript - 日期
- CoffeeScript - 数学
- CoffeeScript - 异常处理
- CoffeeScript - 正则表达式
- CoffeeScript - 类和继承
- CoffeeScript 高级
- CoffeeScript - Ajax
- CoffeeScript - jQuery
- CoffeeScript - MongoDB
- CoffeeScript - SQLite
- CoffeeScript 实用资源
- CoffeeScript - 快速指南
- CoffeeScript - 实用资源
- CoffeeScript - 讨论
CoffeeScript 数学 - asin()
说明
asin() 方法接受一个整数值,并返回其以弧度为单位的反正弦值。asin 方法返回介于 -pi/2 和 pi/2 弧度之间的数值,对于介于 -1 和 1 之间的 x。如果该数字的值超出此范围,则返回 NaN。
语法
以下是 JavaScript 的 asin() 方法的语法。我们可以在 CoffeeScript 代码中使用同样的方法。
Math.asin( x )
范例
以下示例演示了在 CoffeeScript 中使用 asin() 方法。将此代码另存为名为 math_asin.coffee 的文件。
value = Math.asin -1 console.log "The arc sine value of -1 is : " + value value = Math.asin null console.log "The arc sine value of null is : " + value value = Math.asin 20 console.log "The arc sine value of 20 is : " + value
打开 命令提示符 并按照以下方式编译 .coffee 文件。
c:\> coffee -c math_asin.coffee
在编译过程中,它会给你以下 JavaScript。
// Generated by CoffeeScript 1.10.0 (function() { var value; value = Math.asin(-1); console.log("The arc sine value of -1 is : " + value); value = Math.asin(null); console.log("The arc sine value of null is : " + value); value = Math.asin(20); console.log("The arc sine value of 20 is : " + value); }).call(this);
现在,再次打开 命令提示符,并按照以下方式运行 CoffeeScript 文件。
c:\> coffee math_asin.coffee
在执行过程中,CoffeeScript 文件产生以下输出。
The arc sine value of -1 is : -1.5707963267948966 The arc sine value of null is : 0 The arc sine value of 20 is : NaN
coffeescript_math.htm
广告