var t = "up", k = 0; function changeT(){ k++; t = k % 4 < 2 ? "up" : "dn"; return t } alert([t,changeT(),changeT(),changeT(),changeT(),changeT()]);