> I'm still unclear on the difference between window['log'] and log.
>
> if (window['log']) {
> log = os.log;
> }The idea here is that if there is already a variable in the global scope, we want to set that variable. This is important if any kind of pre-processing is in place that does identifier renaming.

