// 先声明一个类let User = class{ // 构造函数 声明属性 constructor(name,age){ // 1.实例成员 this.name = name this.age...
// 数组的解构赋值// 1.正常解构 (一一对应)let [name,age] = ['张三',18] console.log(name, age)// 如果需要更新name 与 age的值 需要在前面加上;;[name,age] = ['李四...
// 1.正常一维数组const arr = [1,2,3,4,5]console.log(arr[0],arr[4]);// 2.多维数组 (成员还是数组)const arr1 = [ [1,2,3,4,5], [6,7,8,9,10]...
const USER_NAME = "阿皮"; //常量console.log(USER_NAME);let userName = "皮皮"; //变量console.log("hello" + userName);// 命名函数function ...
grid1.隐式网格
flex布局容器默认属性flex-direction:row 主轴方向flex-wrap:nowrap 是否换行justify-content:start 主轴排列align-item:stretch 单行(不换行)align-content:sta...