Replace Temp with Query (JS): Before: const discount = basePrice * 0.1; return total - discount; After: function getDiscount() { return basePrice * 0.1; } return total - getDiscount(); #JavaScript #CodeQuality
0
0
1
12
0