“js inline if” Kode Jawaban

js inline if

var a = 2;
var b = 3;    
var c = ((a < b) ? 'minor' : 'major');
Sticky Pingu

inline if pernyataan javascript

You can also approximate an if/else using only Logical Operators.

(a && b) || c
The above is roughly the same as saying:

a ? b : c
And of course, roughly the same as:

if ( a ) { b } else { c }
I say roughly because there is one difference with this approach, in that you have to know that the value of b will evaluate as true, otherwise you will always get c. Bascially you have to realise that the part that would appear if () { here } is now part of the condition that you place if ( here ) {  }.
Vast Vendace

Jawaban yang mirip dengan “js inline if”

Pertanyaan yang mirip dengan “js inline if”

Lebih banyak jawaban terkait untuk “js inline if” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya