const min = Math.min(a,b); // slow const min = a<b? a: b; // fast arr.push(x); // slow arr[arr.length] = x; // fast