DEV Community

Discussion on: Paracetamol.js💊| #100: Explica este código JavaScript

Collapse
 
jonrandy profile image
Jon Randy 🎖️

A quick shortcut to just remove the decimal part:

console.log(~~9.8)   // 9
Enter fullscreen mode Exit fullscreen mode

Beware - this isn't the same as round, floor, or ceil

Collapse
 
taneros profile image
Renatik

I wouldn't use it in my code because at code review I'd get comments on my code not being explicit (provided this could even get to code review stage. because nowadays eslint would eat you alive for this!). So, I'd instead use Math. methods. But I can agree this is an elegant way.