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
Post a Comment