Members
(constant) MAX_ARRAY_LENGTH
最大数组长度 Math.pow(2,32) - 1
。
- Source:
- Since:
- 1.0.0
- See:
(constant) MAX_SAFE_INTEGER
最大安全整数。
- Source:
- Since:
- 1.0.0
- See:
(constant) MIN_SAFE_INTEGER
最小安全整数。
- Source:
- Since:
- 1.0.0
- See:
(constant) VERSION
ut2 版本号。
- Source:
- Since:
- 1.0.0
(constant) isBrowser
当前运行环境是否为浏览器。
- Source:
- Since:
- 1.10.0
(constant) root
全局对象。
不同的 JavaScript 环境都可以获取到对应的全局对象:
- Web 中等同于
globalThis
/window
/self
/frames
(兼容旧浏览器) - Node.js 中等同于
globalThis
/global
(兼容低版本 Node.js) - Web Workers 中等同于
self
- Source:
- Since:
- 1.10.0
- See: