JS ~~ 取整數 Admin 收錄於 Note2023-11-15 目錄 用 ~~ 取得整數值 用 ~ 判斷陣列的值是否存在 參考資料 用 ~~ 取得整數值 無條件捨去,取得整數值,效能優於 parseInt 1 console.log(~~ -2.34); // -2 用 ~ 判斷陣列的值是否存在 1 2 3 4 const arr = [1, 2, 3]; if (~arr.indexOf(3)) { console.log("find!"); // find! } 參考資料 https://segmentfault.com/a/1190000003731938 https://shunnien.github.io/2017/06/26/JavaScript-Double-bitwise-not/