double bitwise pas sténographie javascript

 // Double Bitwise NOT Shorthand
// Longhand:
console.log(Math.floor(4.9) === 4)  //true

// Shorthand:
console.log(~~4.9 === 4)  //true
Chetan Nada