The shortest Javascript function to decide whether a number represents a leap year needs 20 characters:

l=y=>y%(y%25?4:16)<1

At least the specialists at codegolf.stackexchange.com say so. Well, let's try it out:


is not a leap year.