Correcting teacher:天蓬老师
Correction status:qualified
Teacher's comments:
原始类型:值传递、数值、字符串、布尔、undefind、null
<script>
// 值传递
let a = 100;
let b = a;
console.log(b);
//数值
let int = 123;
console.log(int,typeof int);
//字符串
let str = 'zhao';
console.log(str,typeof str);
//布尔值
let bool = true;
console.log(bool,typeof bool);
//undefined 未定义的变量
let name;
console.log(name,typeof name);
//null
let pass = null;
console.log(pass,typeof pass);
</script>