const B=[
[1,2,3],
[4,5,6],
];
// c = col, l = lig
function maxi(A){
let maxC = [];
for( let c=0; c < A[0].length; c++){ // A[0]=indique la dim
let tmp = [];
let max = -10000; //
for ( let l=0; l < A.length; l++){
tmp.push(A[l][c]);
if ( max < A[l][c] ) max = A[l][c];
}
console.log(tmp);
//console.log(Math.max(...tmp)); //top version
console.log(max);
maxC.push(max);
}
console.log(maxC);
return maxC;
}
console.log(`les valeurs Max par colonnes : ${maxi(B)}`);
Remplacer ce code avec reduce et map