Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

352
Views
calcul elapsed time async function javascript

I would like to calcul and display in a file the elapsed time for each call response.

Promise function

function callPromise(ms, promise) {
    return new Promise((resolve, reject) => {
        const timeoutId = setTimeout(() => {
            reject(new Error(`Timeout after ${ms} ms`))
        }, ms);
        promise.then(
            (res) => {
                clearTimeout(timeoutId);
                resolve(res);
            },
            (err) => {
                clearTimeout(timeoutId);
                reject(err);
            }
        );
    })
}

Response call

        const response = await callPromise(10, fetch(url, {
            method: request.method,
            headers: header,
            body: body
        }))
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

With console.time() ?

console.time("Elapsed time :");
const response = await callPromise(...);
console.timeEnd("Elapsed time :"); // Will log "Elapsed time : 6.9165ms"
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!