DEV Community

Discussion on: 6 Use Cases of Spread with Array in JavaScript

Collapse
 
samanthaming profile image
Samantha Ming

min and max? please say more! 🤩

Collapse
 
bukazoltan profile image
bukazoltan • Edited

Well, the min() and max() method cannot take an array as an input, so spreading it can solve that problem too... It saved me a lot of headaches.

array = [1, 2, 3, 4, 5];
var minimum = Math.min(...array);
var maximum = Math.max(...array);
Thread Thread
 
samanthaming profile image
Samantha Ming

Ah yes! that's a fantastic use case! let me add it to my notes, thanks for sharing 💪