Last active
          December 19, 2019 16:45 
        
      - 
      
- 
        Save anhnguyen1618/12ffa5d815db92d4ef9af8c3ccd4a3a4 to your computer and use it in GitHub Desktop. 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | var text= "1"; | |
| function f() { | |
| console.log(text); | |
| var text = "2"; | |
| console.log(this.text); | |
| function g() { | |
| console.log(text); | |
| } | |
| g() | |
| } | |
| f() | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment