How to replace the following line with a short code of only one comparison?
(item.image!==null && typeof(item.image)!==undefined && typeof(item.image)!==NaN && item.image!=='')
All conditions of this if can be reduced to this:
if (item.image)