KoEkko
Results
3
comments of
KoEkko
我来!
# Contributing to create-neat We would love for you to contribute to create-neat and help make it even better than it is today! As a contributor, here are the guidelines...
> ```js > const arr = [5,2,7,9] > > // 1. 排序取值 > const max1 = arr.sort()[arr.length - 1] > > // 2. 使用 Math.max > const max2 = Math.max(...arr)...