CallBack function in javaScript.

 ðŸ‘Œ  CallBack function in javaScript.


 function callback(){

    console.log("This is a my first call");

}


function test(name,call){

    console.log("My name is "+ name);

    call(); //same arguments name/

}


test("anil",callback); //same name of callback function;

Comments

Popular posts from this blog

My Sql Query ..

Interview question laravel.