“JS ternärisch sonst multi” Code-Antworten

Verwenden Sie mehrere bedingte ternäre Operatoren JavaScript

// Use Multiple Conditional Ternary Operators Javascript.


function checkSign(num) {

	return num > 0 ? "positive" : num < 0 ? "negative" : "zero";

}

console.log(checkSign(10));
console.log(checkSign(-10));
console.log(checkSign(0));
Tony Harris

JS ternärisch sonst multi

var foo = (
  bar === 'a' ? 1 : // if 
  bar === 'b' ? 2 : // else if 
  bar === 'c' ? 3 : // else if
  null // else 
);
Borma

Multipler ternärer Operator JavaScript

var icon = (area == 1) ? icon1 : (area == 2) ? icon2 : icon0;
Lokesh003

Ähnliche Antworten wie “JS ternärisch sonst multi”

Fragen ähnlich wie “JS ternärisch sonst multi”

Weitere verwandte Antworten zu “JS ternärisch sonst multi” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen