123 Inline Variable

//FROM
let basePrice = anOrder.basePrice;
return (basePrice > 1000);

//TO
return anOrder.basePrice > 1000;

Backlinks