SO fiddle

Test Fiddle mainly for SO Questions

by Nick Craver

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/themes/overcast/jquery-ui.css">

JavaScript

function a(args){
    b.apply(this, arguments);
}

function b(args){
   alert(arguments[0]);
}

a(1,2,3);