console

Javascript

JavaScript Performance using console.time() & console.timeEnd()

Many a times it's necessary to check the time your code is taking to execute. JavaScript runs on the client's local machine and we don't want our application to be sluggish even in the devices with lesser hardware configurations.

Read