Dominic Myers writes about all sorts of stuff to do with HTML, CSS, JavaScript and a fair chunk of self-indulgent stuff. Thoughts and opinions are all his own, and nothing to do with any employer.
Nice easy function to tell if a number is even:
function isEven(value){ return value % 2 == 0; }
No comments:
Post a Comment