build(deps): apply updates in examples
[poolifier.git] / examples / javascript / fixedExample.js
index 1f5ac4ea4e19f52ec474de4c12c6ed314f78704e..66bfc8fc8a32e3186acec24195183be75b49cbbd 100644 (file)
@@ -23,9 +23,9 @@ for (let i = 1; i <= iterations; i++) {
     .then(() => {
       resolved++
       if (resolved === iterations) {
-        console.info('Time taken is ' + (performance.now() - start))
-        console.info('The pool was ready for ' + poolReady + ' times')
-        return console.info('The pool was busy for ' + poolBusy + ' times')
+        console.info(`Time taken is ${performance.now() - start}`)
+        console.info(`The pool was ready for ${poolReady} times`)
+        return console.info(`The pool was busy for ${poolBusy} times`)
       }
       return null
     })