Не могу найти метод в цепочке прототипов
Метод Number.isInteger() определяет, является ли переданное значение целым числом.
console.log(Number.prototype);
Number {0, constructor: ƒ, toExponential: ƒ, toFixed: ƒ, toPrecision: ƒ, …}
constructor: ƒ Number()
toExponential: ƒ toExponential()
toFixed: ƒ toFixed()
toLocaleString: ƒ toLocaleString()
toPrecision: ƒ toPrecision()
toString: ƒ toString()
valueOf: ƒ valueOf()
[[Prototype]]: Object
Но, где же оно в цепочке прототипов? Уже все пересмотрел, не могу понять)