В моем проекте есть код ниже. Как вы можете видеть, мне пришлось проверить undefined для всех объектов и свойств this.view && this.view.formView && this.view.formView._dapSections && & this.view.formView._dapSections.scrollTop.
Я ищу способ проверить undefined для всех сразу. Есть ли способ сделать это в JavaScript или dojo?
if(this.view && this.view.formView && this.view.formView._dapSections && this.view.formView._dapSections.scrollTop) {
globals.lastScrollPosition = this.view.formView._dapSections.scrollTop;
}