js取出数组中最大值

const numbers = [5, 12, 8, 23, 6];
const maxValue = Math.max(...numbers);

console.log("数组中的最大值是:" + maxValue);

你可能感兴趣的:(Js,javascript,前端,vue.js)