Kyle K·Follow1 min read·Nov 16, 2019--1ListenShareHello, thanks for pointing out those feature candidates.In the following code:const name = (obj.name && obj.name !== ‘’) || ‘Jane’;if obj.name === null we get trueI think you meant:const name = (obj.name && obj.name !== ‘’) ? obj.name : ‘Jane’;