{
var
str1 =
"小花"
;
let
str2 =
"小明"
console.log(str1);
//小花
console.log(str2);
//小明
}
//Error:str2 is not defined