The problem of ternary operator

problem description

if A has a value to choose A, if B has a value to choose B, neither has a value to choose C. how to write

the environmental background of the problems and what methods you have tried

related codes

/ / Please paste the code text below (do not replace the code with pictures)

what result do you expect? What is the error message actually seen?

Sep.16,2021

do not know what type of value ABC is. If it is the original type, as long as it is judged to be non-empty, the fastest value is short circuit or

.
A||B||C

if it is an object type, or if the judgment is complicated

A!==null?A:(B!==null?B:C) //!==null

var md,a='',b='',c=3
md = a?a:b?b:c
console.log ('-'+ md)

Menu