Questions
function awal(){
setTimeout( function(){
console.log(23, 52, 71, 90, 17, 29, 94, 75, 63);
}, 500 );
}
function akhir(){
console.log(63);
}
akhir();
INFO
function awal(){
setTimeout( function(){
console.log(23, 52, 71, 90, 17, 29, 94, 75, 63);
}, 500 );
}
function akhir(){
console.log(63);
}
akhir();