Skip to content

Instantly share code, notes, and snippets.

@tiffwu
Created December 21, 2016 01:29
Show Gist options
  • Save tiffwu/5eba43dfc99d1d22e41937614fada2cc to your computer and use it in GitHub Desktop.
Save tiffwu/5eba43dfc99d1d22e41937614fada2cc to your computer and use it in GitHub Desktop.
solution to Watch and Code challenge #1: 'Improving runWithDebugger'
function runWithDebugger(fn, argArray) {
debugger;
fn.apply(null, argArray);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment