Double Bitwise, não abreviado JavaScript
// Double Bitwise NOT Shorthand
// Longhand:
console.log(Math.floor(4.9) === 4) //true
// Shorthand:
console.log(~~4.9 === 4) //true
Chetan Nada