Skip to content

Instantly share code, notes, and snippets.

@shikelong
Created July 3, 2020 14:16
Show Gist options
  • Save shikelong/8862cb0dbaa018091a206c3f11c7f881 to your computer and use it in GitHub Desktop.
Save shikelong/8862cb0dbaa018091a206c3f11c7f881 to your computer and use it in GitHub Desktop.
Javascript Language Issues
'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