“devolución de llamada en JS” Código de respuesta

función de devolución de llamada JS

function greeting(name) {
  alert('Hello ' + name);
}

function processUserInput(callback) {
  var name = prompt('Please enter your name.');
  callback(name);
}

processUserInput(greeting);

devolución de llamada en JavaScript

function sum(num1,num2,callback){
    let total = num1 + num2
    callback(total)
}

sum(10,20,function(total){
    // received total here
    console.log(total);
})

sum(5,16,(total)=>{
    console.log(total);
})
CodePadding

Cómo hacer que la devolución de llamada funcione JavaScript

function startWith(message, callback){
	console.log("Clearly written messages is: " + message);
  
  	//check if the callback variable is a function..
  	if(typeof callback == "function"){
    	callback(); //execute function if function is truly a function.
    }
}
//finally execute function at the end 
startWith("This Messsage", function mySpecialCallback(){
	console.log("Message from callback function");
})
Outstanding Lioncatcher

Ejemplo de función de devolución de llamada en JavaScript

<html>  
<head>  
  
</head>  
<body>  
<h1>Hello User</h1>  
<h2> This is the softhunt.net</h2>  
<script>  
function showData(name, amt) {  
alert(' Hello ' + name + '\n Your entered amount is ' + amt);  
}  
  
function getData(callback) {  
var name = prompt(" Welcome to the softhunt.net \n What is your name?");  
var amt = prompt(" Enter some amount...");  
callback(name, amt);  
}  
  
getData(showData);  
</script>  
</body>  
  
</html>
Outrageous Ostrich

función de devolución de llamada JS

const add = (num1, num2) => num1 + num2;

const result = (num1, num2, cb) => {
  return "result is:" + cb(num1, num2);
}

const res = result(12, 13, add);
Scary Stag

JavaScript usando una función de devolución de llamada

// Callback Function Example
function greet(name, myFunction) {
    console.log('Hello world');

    // callback function
    // executed only after the greet() is executed
    myFunction(name);
}

// callback function
function sayName(name) {
    console.log('Hello' + ' ' + name);
}

// calling the function after 2 seconds
setTimeout(greet, 2000, 'John', sayName);
SAMER SAEID

Respuestas similares a “devolución de llamada en JS”

Preguntas similares a “devolución de llamada en JS”

Más respuestas relacionadas con “devolución de llamada en JS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código