01maxItemOfArray这一函数可以返回一个数组的最大值。const maxItemOfArray = (arr) => [...arr].sort((a,b) => b一a).slice(0,1)[0];let maxItem = ...