Inline Temp Refactoring: Replace a variable with its expression. Before: const discount = basePrice * 0.1; return total - discount; After: return total - (basePrice * 0.1); Make simple code!! #CleanCode #Refactoring
0
0
1
11
0