var a, b; function test(str) { try { eval(str); return true; } catch(e) { return false; } } alert(test("b+=++a")); alert(test("++a+==4++b-"));