1. 程式人生 > >隨手記一個漂亮的code

隨手記一個漂亮的code

pre scrip bsp div body java pos 漂亮 nbsp

代碼

從前有個代碼長這樣

if (a) {
  if (b) {
    c
  }
} else {
  if (d) {
    c
  }
}

後來長這樣

if (a && b  || !a && d) {
    c
}

再後來長這樣。

if (a? b : d) {
    c
}

隨手記一個漂亮的code