4

Just realized that I haven't used Math.ceil() for years.

Comments
  • 1
    Math.floor() + 1
  • 0
    @vector300
    Math.floor(1.5) + 1 == Math.ceil(1.5)

    However

    Math.floor(42) + 1 != Math.ceil(42)
  • 0
    This is a type of job that we, server side developers, don't like to pass to guys on front-end.
Add Comment