<script>
var a = "str1";
var b = a;
delete a;
if(b){
alert("yes");
}else{
alert("no");
}
</script>
运行出来是什么啊?解释下
var b= a;delete a;
这2行代码的意思吧