Jamie Huson
05/01/2018, 8:16 PMif(isNull(someString)) { someString.length } else { someString.length }
, the first someString.length
would give an error or somethingAndreas Sinz
05/01/2018, 8:21 PMif(someString == null)
?Jamie Huson
05/01/2018, 8:25 PMif(null)
and i was adding a simple function to help with thatAndreas Sinz
05/01/2018, 8:29 PMJamie Huson
05/01/2018, 8:32 PM