MCQs>IT & Programming>Kotlin>Which line of code is a shorter, more idiomatic version of the displayed snippet? val len: Int = if (x != null) x.length else -1
Kotlin MCQs
Which line of code is a shorter, more idiomatic version of the displayed snippet? val len: Int = if (x != null) x.length else -1
Answer
Correct Answer: Val len = x?.length ?: -1
Explanation:
Note: This Question is unanswered, help us to find answer for this one