我把它改成這樣就好了
function undefined_test(val) { if (val == null || val === undefined) { return 1 } else { return 0 } }
我把它改成這樣就好了