function myFunc(arg1, arg2, arg3) { return arg3+arg2+arg1; } alert(myFunc(1, 2, 3)); // 6 alert(myFunc("A", "B", "C")); // CBA