Created
July 3, 2020 14:16
-
-
Save shikelong/8862cb0dbaa018091a206c3f11c7f881 to your computer and use it in GitHub Desktop.
Javascript Language Issues
This file contains 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
'use strict'; | |
var i; | |
for(let i = 0; i< 1; i++){ | |
//let i = 12; | |
//var i = 13; | |
//i = 20; | |
} | |
//以上写法有几种会报错。原因是为什么? | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment