Snippets Collections
const calcTip = (bill) => {
  return bill >= 50 && bill <= 300 ? bill * 0.15 : bill * 0.20;
}



const demandIcon = demand === "low" ? iconArrowDown 
: demand === "stable" ? iconArrowRight 
: demand === "high" ? iconArrowUp : "";
star

Wed Jun 12 2024 06:23:57 GMT+0000 (Coordinated Universal Time)

#condtional #ternary

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension