No olvides que en la informática cualquier problema casi siempre tiene diferentes soluciones, así que te mostramos lo más óptimo y mejor.
Ejemplo 1: javascript de doble signo de interrogación
//Similar to || but only returns the right-hand operand if the left-hand is null or undefined0??"other"// 0false??"other"// falsenull??"other"// "other"undefined??"other"// "other"
Ejemplo 2: javascript doble signo de interrogación
let a =null;const b = a ??-1;// Same as b = ( a != null ? a : -1 );console.log(b);// output: -1//OR IFlet a =9;const b = a ??-1;console.log(b);// output: 9//PS.,VERY CLOSE TO '||' OPERATION IN FUNCTION, BY NOT THE SAME
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)