JS_GetNaNValue 编辑

Get the not-a-number (NaN) floating-point number as a value of type JS::Value.

Syntax

// Added in SpiderMonkey 42
JS::Value
JS_GetNaNValue(JSContext *cx);

// Obsolete since SpiderMonkey 42
jsval
JS_GetNaNValue(JSContext *cx);
NameTypeDescription
cxJSContext *A context.

Description

JS_GetNaNValue returns a value of type JS::Value that represents an IEEE floating-point quiet Not-a-Number (NaN).

NaN is typically used in JavaScript as the return value of a numeric operation when an argument is invalid or conversion fails. For example, 0/0 and Math.sqrt(-1) both return NaN. So do Number("xyzzy") and Math.sin("Frank"). While the IEEE standard defines many NaN bit-patterns, they are indistinguishable in JavaScript, so in effect there's only one NaN.

NaN is not equal to any other value. In fact, it is not even equal to itself: if x is NaN, then x != x.

See Also

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:113 次

字数:2802

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文