Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Created July 10, 2018 04:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sajjadyousefnia/1a55699e16e78f60a4c97352c3e5e005 to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/1a55699e16e78f60a4c97352c3e5e005 to your computer and use it in GitHub Desktop.
stringVariable?.let {
println("The length of this String is ${it.length}")
}
// Exactly the same as below
stringVariable?.also {
println("The length of this String is ${it.length}")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment