在哪里可以找到 Node.js 所有内部对象的完整属性/函数列表?

发布于 2024-11-02 00:44:01 字数 110 浏览 1 评论 0原文

我阅读了他们的 API,但是,没有任何关于 Date 对象或如何生成简单随机数(例如 Math.random() )的内容。这些内部对象与客户端 JavaScript 对象不同。那么我可以在哪里找到呢?谢谢

I read their API, however, there is nothing about Date object, or how to generate a simple random number (e.g. Math.random() ). Those internal objects are different from the client side javascript ones. so where can I find out ? Thank.s

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏末 2024-11-09 00:44:01

这些内部对象与 google chrome 中运行的对象相同。它们由 v8 引擎提供。

Those internal objects are the same as the objects that run in google chrome. They're provided by the v8 engine.

千年*琉璃梦 2024-11-09 00:44:01

当前版本的 NodeJS (v0.4.6) 的文档可以在这里找到: http ://nodejs.org/docs/v0.4.6/api/all.html

总的来说,NodeJS 中的许多内部对象应该与您期望在客户端看到的相同。

从我的终端加载 REPL,我看到以下内容:

> Math.random
[Function: random]
> Math.random();
0.8805044267792255
> Math.random();
0.3855400965549052
> new Date();
Mon, 18 Apr 2011 21:58:19 GMT
> new Date();
Mon, 18 Apr 2011 21:58:20 GMT

The documentation for the current release of NodeJS (v0.4.6) can be found here: http://nodejs.org/docs/v0.4.6/api/all.html

On the whole, many of the internal objects within NodeJS should be same as your expect to see on the client-side.

Loading up the REPL from my terminal, I see the following:

> Math.random
[Function: random]
> Math.random();
0.8805044267792255
> Math.random();
0.3855400965549052
> new Date();
Mon, 18 Apr 2011 21:58:19 GMT
> new Date();
Mon, 18 Apr 2011 21:58:20 GMT
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文