Skip to content
文档库
搜索
K
Main Navigation
VitePress
Nuxt
TypeScript
JavaScript
上传与下载
package
Vue
pinia
Vue2
全局属性
Vue3
全局属性
Appearance
Menu
Return to top
目录
Math
round
四舍五入
ts
Math.
round
(
4.6
)
// 5
floor
向下取整
ts
Math.
floor
(
4.6
)
// 4
ceil
向上取整
ts
Math.
ceil
(
4.1
)
// 5