``` function itemIsNotNull(){ ... return !!it...
# suitescript
j
Copy code
function itemIsNotNull(){ 
  ...
  return !!item; // returns just a boolean
}
Copy code
function itemIsNotNull() {
  ...
  return item; // returns the whole variable
}