“Operator trójskładnikowy” Kod odpowiedzi

Operator trójskładnikowy

condition ? expression-if-true : expression-if-false;

function findGreater(a, b) {
  return a > b ? "a is greater" : "b is greater";
}
Owlthegentleman

Operator trójskładnikowy

// syntax:
condition ? console.log("true") : console.log("false");
// e.g:
let n = 15;
n % 2 === 0 ? console.log("even number") : console.log("odd number");
5alidshammout

potrójny

let greeting = ( isBirthday ) ? 'Happy birthday Mrs. Smith — we hope you have a great day!' : 'Good morning Mrs. Smith.';
Outrageous Osprey

Operator trójskładnikowy

condition ? exprIfTrue : exprIfFalse
The conditional (ternary) operator is the only JavaScript operator that takes three operands: a condition followed by a question mark ( ? ), then an expression to execute if the condition is truthy followed by a colon ( : ), and finally the expression to execute if the condition is falsy
Muhammad

Operator trójskładnikowy

$check = CONDITION ? "Do this if the statement true" : "Do This if the statement false"
Pogi

Operator trójskładnikowy

$customer->user->fullName ?? ''

$customer->user->fullName ? $customer->user->fullName : ''
  
isset($customer->user->fullName) ? $customer->user->fullName : ''
calyCoder

Odpowiedzi podobne do “Operator trójskładnikowy”

Pytania podobne do “Operator trójskładnikowy”

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

Przeglądaj inne języki kodu