对象转数组:Array.from()
求数组最大最小值:Math.max(...arr); Math.min(...arr);
多个变量赋值: const [ age, name, sex ] = str.split(‘,’); // str="20,小明,男";