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

后端 未结 1 718
栀梦
栀梦 2021-01-18 01:11
function test1 (){
    //do something
}

To call out the function above, i just need to write test1();

var check_day =          


        
相关标签:
1条回答
  • 2021-01-18 01:39

    The same way–call a function using parens ():

    check_day(the_parameter);
    
    0 讨论(0)
提交回复
热议问题