Advertisement
soden

Untitled

Feb 27th, 2024
651
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.22 KB | Source Code | 0 0
  1. function process(callback) {
  2.     console.log('Proses dimulai.');
  3.     callback();
  4.     console.log('Proses selesai.');
  5. }
  6.  
  7. function callbackFunction() {
  8.     console.log('Callback dieksekusi.');
  9. }
  10.  
  11. process(callbackFunction);
Tags: JavaScript
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement