How to call out javascript function which is assigned to a variable? -


function test1 (){     //do } 

to call out function above, need write test1();

var check_day = function($select_d){     //do }; 

how can call out function assigned variable?

the same way–call function using parens ():

check_day(the_parameter); 

Comments