How in javaScript from this array find the maximum number
[ [ 'a' , 0.01 ] , [ 'b' , 0.02 ] , ...]
I need to find the maximum number of 0.01 , 0.02 ...
How in javaScript from the above array
make this array
[ 0.01 , 0.02 , ...]
and using the function Math.max() find the maximum number?