OneCompiler

max in array

120

function maxarray(a)
{
return Math.max(...a);

}
const res = maxarray([2,5,4,98,7])
console.log( res );