Mark min & max - smallQuerty/canvas_charts GitHub Wiki
Define minimal and maximal value
let max, min;
`max=Math.max(...numbers); //three dots - for all numbers in array - numbers`
`min=Math.min(...numbers);`
Define minimal and maximal value
let max, min;
`max=Math.max(...numbers); //three dots - for all numbers in array - numbers`
`min=Math.min(...numbers);`