function test(a) { return a + a; } alert(test(10)); test = function (a) { return "test"; } alert(test(10));