Liste JavaScript synchrone et asynchrone
function f1() {
// some code
}
function f2() {
// some code
}
function f3() {
// some code
}
// Invoke the functions one by one
f1();
f2();
f3();
Crazy Cowfish