//1.数组const arr = [2, 'uname', true]console.log(arr)console.table(arr)console.log(arr[0], arr[1], arr[2])console.log(typeof a...
//基本数据类型//1. 数值(不区分整数和小数)console.log(100, typeof 100)//2. 字符串console.log('admin', typeof 'admin')//3. 布尔类型console.log(true, t...
//1. 数据//a .常量let username = 'admin' //声明 赋值console.log(username) //更新//b. 变量const gender = '男' //创建常量时,必须初始化console.log(gend...
...
/* 0.0.1 */h3{ color: aqua;}/* 0.0.2 */body h3{ color: black;}/* 0.1.1 */h3.span{ color: blue;}/* 0.2.1 */h3.title.s...
/* 基本选择器 */h2{ color:aqua}h2.spring { color:blue}h2#item { color:red}/* 上下文选择器 *//* 父子选择器 */ul.list > .ent { bord...