当前位置: 首页 > news >正文

01-Vue3阶段必会的前置知识-01变量和常量

01-Vue3阶段必会的前置知识-01变量和常量

变量

  • 变量使用let声明

常量

  • 常量使用的是const声明

数组添加元素4

const arr = [1,2,3]
//添加
arr.push(4)
//删除
arr.shift()

image