Callback trong Javascript
August 16, 2020
Mẫu viết function callback trong javascript:
function doSomething(callback) {
// ...
// Call the callback
callback('stuff', 'goes', 'here');
}
function foo(a, b, c) {
// I'm the callback
alert(a + " " + b + " " + c);
}
doSomething(foo);
Written by Quilv Follow me on Facebook