Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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);
});
Source by frugalisminds.com #
 
PREVIOUS NEXT
Tagged: #await #node #js
ADD COMMENT
Topic
Name
5+6 =