1 2 3 4 5 6 7 8 9 10
function d(t) { if (t >= undefined) {} } function s() { d(null); } d(3); s(); s();