const start = performance.now();
// perform some function
const end = performance.now();
console.log(`Execution time: ${end - start} ms`);
const start = performance.now();
// perform some function
const end = performance.now();
console.log(`Execution time: ${end - start} ms`);