Skip to content

Instantly share code, notes, and snippets.

@yask123
Created January 6, 2016 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yask123/c520d7f67f5fa5910e82 to your computer and use it in GitHub Desktop.
Save yask123/c520d7f67f5fa5910e82 to your computer and use it in GitHub Desktop.
yasksrivastava at Yasks-MacBook-Pro in ~/learnyoureact
$ node
> function calc(){
... this.a = 5;
... }
undefined
> calc()
undefined
> calc
[Function: calc]
> calc.a
undefined
> function calc(){
... return this.a
... }
undefined
> calc
[Function: calc]
> calc()
5
> function calc(){
... this.b = 'yask';
... }
undefined
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment