function A() {
var a = context.parameters.FormOfFinancialStatement.getValue();
if (a != undefined) {
var result = a.find(function (item) {
return context.controls.FormComboBox.getValue().Code != item.FormOfFinancialStatement.Code
});
}
else {
return true;
}
}
Почему мне функция возвращает undefined?