If determines how to optimize the way objects are used?

how the code of if is optimized to the simplest

if (res.OrderInfo.OrderItems.GoodsSource === "JD") {
  res.OrderInfo.OrderItems.GoodsSource = "";
} else if (res.OrderInfo.OrderItems.GoodsSource === "SF") {
  res.OrderInfo.OrderItems.GoodsSource = "";
} else if (res.OrderInfo.OrderItems.GoodsSource === "SELF") {
  res.OrderInfo.OrderItems.GoodsSource = "";
}
Apr.02,2022

  

if can be abbreviated with ternary expressions, but
if it's your code above, it's better to write it in switch or map

.
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b32a01-2be10.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b32a01-2be10.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?