- install Code Runner. It is easy to run your code.
- And then add some different implementations.
- Finally try this lines:
const start = performance.now();
sequenceRecursive(100000);
const end = performance.now();
console.log(`Duration: \n${end - start} ms`);