> Hello guys, I'm trying to decide if should I ...
# getting-started
t
Hello guys, I'm trying to decide if should I use if (value != null) {value.doSomething()} or value?.let {it.doSomething()}
when i started writing kotlin i used
let
a lot, but i've gone back to only using
if
now. it's just easier to understand for anyone reading the code