Ternary
Ternary conditional operator is simply a short hand way of writing simple conditionals. Its benefit is its simplicity and reduce the lines of code in your application. It's best used when a conditional is between two choices. Otherwise, it might be better to consider using else if or switch statements instead. The examples below will test to see if variable carCount is greater than 2 and will return yes if true and no if false. Finally, some languages such as Go, Kotlin and Matlab do not have ternary expression and instead must use if/else statements.