Skip to content

Instantly share code, notes, and snippets.

@Jaezmien
Last active May 2, 2021 10:19
Show Gist options
  • Save Jaezmien/48d23a52a339f11881e87629fa71878c to your computer and use it in GitHub Desktop.
Save Jaezmien/48d23a52a339f11881e87629fa71878c to your computer and use it in GitHub Desktop.
πŸ‘‚ Execute and listen the console.log of a code
function exec_js(code) {
var _log = console.log;
var logs = [];
console.log = function(...value) {
_log.apply(console, arguments);
logs.push( value );
}
Function( code )();
console.log = _log;
return logs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment