Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
6062bfa8
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3172
Star
105
Fork
804
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
93
列表
看板
标记
里程碑
合并请求
67
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
93
Issue
93
列表
看板
标记
里程碑
合并请求
67
合并请求
67
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
6062bfa8
编写于
2月 07, 2023
作者:
Y
yurj26
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
docs: update syntax-uts.md
上级
6f95bdf5
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
12 addition
and
12 deletion
+12
-12
docs/tutorial/syntax-uts.md
docs/tutorial/syntax-uts.md
+12
-12
未找到文件。
docs/tutorial/syntax-uts.md
浏览文件 @
6062bfa8
...
@@ -2086,7 +2086,7 @@ Math.E 属性表示自然对数的底数(或称为基数),e,约等于 2.
...
@@ -2086,7 +2086,7 @@ Math.E 属性表示自然对数的底数(或称为基数),e,约等于 2.
|√|x|x|
|√|x|x|
```
ts
```
ts
function
getNapier
()
{
function
getNapier
()
:
number
{
return
Math
.
E
;
return
Math
.
E
;
}
}
console
.
log
(
getNapier
());
console
.
log
(
getNapier
());
...
@@ -2104,7 +2104,7 @@ Math.LN10 属性表示 10 的自然对数,约为 2.302。
...
@@ -2104,7 +2104,7 @@ Math.LN10 属性表示 10 的自然对数,约为 2.302。
|√|x|x|
|√|x|x|
```
ts
```
ts
function
getNatLog10
()
{
function
getNatLog10
()
:
number
{
return
Math
.
LN10
;
return
Math
.
LN10
;
}
}
console
.
log
(
getNatLog10
());
console
.
log
(
getNatLog10
());
...
@@ -2122,7 +2122,7 @@ Math.LN2 属性表示 2 的自然对数,约为 0.693。
...
@@ -2122,7 +2122,7 @@ Math.LN2 属性表示 2 的自然对数,约为 0.693。
|√|x|x|
|√|x|x|
```
ts
```
ts
function
getNatLog2
()
{
function
getNatLog2
()
:
number
{
return
Math
.
LN2
;
return
Math
.
LN2
;
}
}
console
.
log
(
getNatLog2
());
console
.
log
(
getNatLog2
());
...
@@ -2140,7 +2140,7 @@ Math.LOG10E 属性表示以 10 为底数,e 的对数,约为 0.434。
...
@@ -2140,7 +2140,7 @@ Math.LOG10E 属性表示以 10 为底数,e 的对数,约为 0.434。
|√|x|x|
|√|x|x|
```
ts
```
ts
function
getLog10e
()
{
function
getLog10e
()
:
number
{
return
Math
.
LOG10E
;
return
Math
.
LOG10E
;
}
}
console
.
log
(
getLog10e
());
console
.
log
(
getLog10e
());
...
@@ -2158,7 +2158,7 @@ Math.LOG2E 属性表示以 2 为底数,e 的对数,约为 1.442。
...
@@ -2158,7 +2158,7 @@ Math.LOG2E 属性表示以 2 为底数,e 的对数,约为 1.442。
|√|x|x|
|√|x|x|
```
ts
```
ts
function
getLog2e
()
{
function
getLog2e
()
:
number
{
return
Math
.
LOG2E
;
return
Math
.
LOG2E
;
}
}
console
.
log
(
getLog2e
());
console
.
log
(
getLog2e
());
...
@@ -2194,7 +2194,7 @@ Math.SQRT1_2 属性表示 1/2 的平方根,约为 0.707。
...
@@ -2194,7 +2194,7 @@ Math.SQRT1_2 属性表示 1/2 的平方根,约为 0.707。
|√|x|x|
|√|x|x|
```
ts
```
ts
function
getRoot1_2
()
{
function
getRoot1_2
()
:
number
{
return
Math
.
SQRT1_2
;
return
Math
.
SQRT1_2
;
}
}
console
.
log
(
getRoot1_2
());
console
.
log
(
getRoot1_2
());
...
@@ -2212,7 +2212,7 @@ Math.SQRT2 属性表示 2 的平方根,约为 1.414。
...
@@ -2212,7 +2212,7 @@ Math.SQRT2 属性表示 2 的平方根,约为 1.414。
|√|x|x|
|√|x|x|
```
ts
```
ts
function
getRoot2
()
{
function
getRoot2
()
:
number
{
return
Math
.
SQRT2
;
return
Math
.
SQRT2
;
}
}
console
.
log
(
getRoot2
());
console
.
log
(
getRoot2
());
...
@@ -2403,13 +2403,13 @@ Math.cbrt() 函数返回任意数字的立方根。
...
@@ -2403,13 +2403,13 @@ Math.cbrt() 函数返回任意数字的立方根。
console
.
log
(
Math
.
cbrt
(
-
1
));
console
.
log
(
Math
.
cbrt
(
-
1
));
// expected output: -1
// expected output: -1
console
.
log
(
Math
.
atanh
(
0
));
console
.
log
(
Math
.
cbrt
(
0
));
// expected output: 0
// expected output: 0
console
.
log
(
Math
.
atanh
(
1
));
console
.
log
(
Math
.
cbrt
(
1
));
// expected output: 1
// expected output: 1
console
.
log
(
Math
.
atanh
(
2
));
console
.
log
(
Math
.
cbrt
(
2
));
// expected output: 1.2599210498948732
// expected output: 1.2599210498948732
```
```
...
@@ -2424,7 +2424,7 @@ Math.ceil() 函数总是四舍五入并返回大于等于给定数字的最小
...
@@ -2424,7 +2424,7 @@ Math.ceil() 函数总是四舍五入并返回大于等于给定数字的最小
|√|x|x|
|√|x|x|
```
ts
```
ts
console
.
log
(
Math
.
ceil
(.
95
));
console
.
log
(
Math
.
ceil
(
0
.95
));
// expected output: 1
// expected output: 1
console
.
log
(
Math
.
ceil
(
4
));
console
.
log
(
Math
.
ceil
(
4
));
...
@@ -2841,7 +2841,7 @@ Math.sin() 函数返回一个数值的正弦值。
...
@@ -2841,7 +2841,7 @@ Math.sin() 函数返回一个数值的正弦值。
console
.
log
(
Math
.
sin
(
0
));
console
.
log
(
Math
.
sin
(
0
));
// expected output: 0
// expected output: 0
console
.
log
(
Math
.
si
g
n
(
1
));
console
.
log
(
Math
.
sin
(
1
));
// expected output: 0.8414709848078965
// expected output: 0.8414709848078965
```
```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录