ternary
ternary operator 삼항 연산자로 쓰인다.
if문으로 여러줄로 쓰이는걸 한줄로 써서 심플하게 해논건데
삼항 연산자 사용하기
let number = 3
print(number > 5 ? "yes" : "no")
// number > 5가 조건이고 참이면 : 기준 왼쪽으로 아니면 오른쪽으로
// 즉 지금 print의 결과물은 no
let number = 3
if number > 5 {
print("yes")
} else {
print("no")
}
출처 : https://hongssup.tistory.com/43