if (condition) { code to run if condition is true } // run some other code
const isRewardsMember = true let totalPrice = 100 if (isRewardsMember) { totalPrice = totalPrice * 0.80 } console.log(totalPrice)
JS Bin on jsbin.com