“en línea si la declaración JavaScript” Código de respuesta

js en línea si

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

Cómo hacer una línea si está en js

// If statement
// if (condition) //code
if (5 > 3) return "Is greater"; // "Is greater"

// If else statement
// (condition) ? if : else
let res = (1 > 3) ? "is greater" : "is less than";// "is less than"
Unixer

en línea si la declaración 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

Respuestas similares a “en línea si la declaración JavaScript”

Preguntas similares a “en línea si la declaración JavaScript”

Más respuestas relacionadas con “en línea si la declaración JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código