Skip to content

Instantly share code, notes, and snippets.

@mishelashala
Last active December 10, 2015 16:25
Show Gist options
  • Save mishelashala/3dd162435ac2494af173 to your computer and use it in GitHub Desktop.
Save mishelashala/3dd162435ac2494af173 to your computer and use it in GitHub Desktop.
function Reader (file) {
this.file = file;
this === global; // false
this === window; // false
}
var r = new Reader('data.txt');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment