面试题前端字符串转数组数组转字符串let,var,const区别数组操作数据基本类型和引用类型获取对象的键值和键名字符串出现的第一次的位置父组子件传值v-show和v-if的区别箭头函数和普通函数的区别?箭头函数可以当做构造函数 new 吗?宏任务和微任务都有哪些js事件总线vue r o u
字符串转数组1、split方法const text = "abc";const chars = text.split('');console.log(chars);//['a', 'b', 'c']```2、展开运算符const text = "abc????";const chars = [ ...text ];console.log(chars);//["a", "b", "c", "