Skip to content

Instantly share code, notes, and snippets.

@faizul14
Last active August 12, 2023 13:17
Show Gist options
  • Save faizul14/67c2e26ea9ccf9ad4b0fc6f82ae23c85 to your computer and use it in GitHub Desktop.
Save faizul14/67c2e26ea9ccf9ad4b0fc6f82ae23c85 to your computer and use it in GitHub Desktop.
val name: String? = "Renren"
val length = name?.let {
println("Name is not null: $it")
it.length
} ?: 0
// Output: Name is not null: Renren
// length = 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment