Measuring execution time Get link Facebook X Pinterest Email Other Apps July 13, 2016 To measure the time take to run a section of code: > console.time("toggleSeries"); ... > console.timeEnd("toggleSeries"); Where the parameter is any label you want. Gives the following output: Read more