inteeface method exist!
if (typeof me.onChange !== "undefined") { // safe to use the function }
if (typeof me.onChange === "function") { // safe to use the function }
if (typeof me.onChange !== "undefined" && typeof me.onChange === "function") { }