“Wartość JS” Kod odpowiedzi

Metoda JavaScript Valueof ()

let x = 123;
x.valueOf();
(123).valueOf();
(100 + 23).valueOf();
naly moslih

Wartość JS

/* ValueOf is a prototype that give the Primitive value of a variable
where typeof will give only it types e.g 
*/

const numObj = new Number(42); // let numObj = 42; will work too
console.log(typeof numObj); // output: "object"

const num = numObj.valueOf();
console.log(num);// output: 42

// it works with any type that have a primitive type

let str = new String("Hello"); // let str = "Hello"; will work too 
console.log(str.valueOf()) // output: "Hello"
Nervous Nightingale

Odpowiedzi podobne do “Wartość JS”

Pytania podobne do “Wartość JS”

Więcej pokrewnych odpowiedzi na “Wartość JS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu