Which of the following is a ternary operator? ( Choose one ) (condition) ? ... (condition) $ .. (condition) &.. If (condition) code example
Example: ternary operator in javascript
FullName: (obj.FirstName && obj.LastName) ? obj.FirstName + " " + obj.LastName : "missing values",