“zerowy operator koalescing” Kod odpowiedzi

Zerowe koalescing kontra logiczne lub opszenia

console.log(<left-operand> <operator> <right-operand>);

// same behaviour
console.log(undefined || "John");	// "John"
console.log(undefined ?? "John");	// "John"
            
console.log(null || "John");	// "John"
console.log(null ?? "John");	// "John"

// different behaviour
console.log(0 || "John");	// "John"
console.log(0 ?? "John");	// 0
            
console.log("" || "John");	// "John"
console.log("" ?? "John");	// ""

console.log(false || "John");	// "John"
console.log(false ?? "John");	// false
amit.bhagat

Zerowy operator koalescing

alert(username ?? "Guest");
Almaz Bakirov

zerowy operator koalescing

(null || undefined) ?? "toto"; // Renvoie "toto"
Mushy Macaque

Odpowiedzi podobne do “zerowy operator koalescing”

Pytania podobne do “zerowy operator koalescing”

Więcej pokrewnych odpowiedzi na “zerowy operator koalescing” w JavaScript

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

Przeglądaj inne języki kodu