Contact: aviboots(AT)netvision.net.il
41,314 questions
53,829 answers
573 users
function print(result) { console.log(result); } function calc(a, b, aCallback) { let sum = a + b; aCallback(sum); } calc(6, 9, print); /* run: 15 */
function afunction(name) { console.log('Hello ' + name); } function getUserInput(callback_function) { let name = prompt('Please enter your name: '); callback_function(name); } getUserInput(afunction); /* run: Please enter your name: Dumbledore Hello Dumbledore */