Answers for "await node"

0

await in node js

// Normal Function
function add(a,b){
  return a + b;
}
// Async Function
async function add(a,b){
  return a + b;
}
Posted by: Guest on November-22-2020
0

async await

async function showAvatar() {
	// read
  	await setTimeout(resolve, 3000);
    // read next 3s
}

showAvatar();
Posted by: Guest on August-06-2020
0

await in node js

// server.js

function square(x) {
  return new Promise(resolve => {
    setTimeout(() => {
      resolve(Math.pow(x, 2));
    }, 2000);
  });
}

square(10).then(data => {
  console.log(data);
});
Posted by: Guest on November-22-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language