Number.prototype.valueOf()

Number 值的 valueOf() 方法返回该数字的值。

¥The valueOf() method of Number values returns the value of this number.

Try it

语法

¥Syntax

js
valueOf()

参数

¥Parameters

没有任何。

¥None.

返回值

¥Return value

表示指定 Number 对象的原始值的数字。

¥A number representing the primitive value of the specified Number object.

描述

¥Description

此方法通常由 JavaScript 在内部调用,而不是在 Web 代码中显式调用。

¥This method is usually called internally by JavaScript and not explicitly in web code.

示例

¥Examples

使用 valueOf

¥Using valueOf

js
const numObj = new Number(10);
console.log(typeof numObj); // object

const num = numObj.valueOf();
console.log(num); // 10
console.log(typeof num); // number

规范

Specification
ECMAScript Language Specification
# sec-number.prototype.valueof

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看