JS ~~ 取整數

用 ~~ 取得整數值

無條件捨去,取得整數值,效能優於 parseInt

1
console.log(~~ -2.34); // -2

用 ~ 判斷陣列的值是否存在

1
2
3
4
const arr = [1, 2, 3];
if (~arr.indexOf(3)) {
  console.log("find!"); // find!
}

參考資料

0%