I\'d like to be able to get the string returned from console.timeEnd(\'t\') in my Google Chrome Javascript Console.
console.timeEnd(\'t\')
In this example below, I\'d like one var
console.timeEnd() function puts the time to console, and returns the value so you can save it to variable
var c = console.timeEnd('a'); c/1000+'s';
or you can save this variable to window object for latest usage
window.c = console.timeEnd('b'); window.c