function birthDay() { var i = 0; while (i <= 31) { (function day() { i++; })() } return i; } alert(birthDay());