Multiple of 100

Published by supafly in

Create a function that takes an integer and returns true if it's divisible by 100, otherwise return false.

Examples

Divisible(1) ➞ false

Divisible(1000) ➞ true

Divisible(100) ➞ true

Notes

  • Don't forget to return the result.
  • If you get stuck on a challenge, find help in the Resources tab.
  • If you're really stuck, unlock solutions in the Solutions tab.
Watch a quick demo on how Edabit works.