Skip to content

Instantly share code, notes, and snippets.

@NsAveek
Created November 21, 2019 15:58
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 NsAveek/2a9d5c8652128619f41da304cae59f07 to your computer and use it in GitHub Desktop.
Save NsAveek/2a9d5c8652128619f41da304cae59f07 to your computer and use it in GitHub Desktop.
// Without Let
if(person!=null){
doSomething()
}
// With Let
person?.let{
doSomething()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment