Assign console.log value to a variable

江枫思渺然 提交于 2019-12-02 19:05:27
mirrormx

You could override standard console.log() function with your own, adding the behaviour you need:

console.oldLog = console.log;

console.log = function(value)
{
    console.oldLog(value);
    window.$log = value;
};

// Usage

console.log('hello');

$log // Has 'hello' in it

This way, you don't have to change your existing logging code. You could also extend it adding an array and storing the whole history of printed objects/values.

If you want to do this to an object that has been already logged (one time thing), chrome console offers a good solution.

Hover over the printed object in the console, right click, then click on "Store as Global Variable". Chrome will assign it to a temporary var name for you which you can use in the console.

In Chrome developer tools, you may access last item by $_:

> 1+1;
  2
> $_
  2

Derivative of mirrormx's answer, but more convenient. I don't need to write a function and can just put it in anywhere on the spur of the moment.

console.log(window.$log = data);

Here is chrome reference for comand line api. There is $_ variable but it "Returns the value of the most recently evaluated expression" not printed, you can make your own log function like this:

function log(data){
   console.log(data);
   return data;
}
// after that you can access last printed value by $_

Please, note that my function is for example, console.log possibilities is much more advanced

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!