What's an easy way to check
if (a.b.v.c.d.e === true) {}
and return false if any of b or c or v is undefined?
Coffeescript handles it easily but what is a comparable solution in vanilla javascript? Is there a library that has this common issue taken cared of?