Pages

Thursday, March 6, 2014

Tutorial Check if Number is Even/Odd

function isEven(value) {
	if (value%2 == 0)
		return true;
	else
		return false;
}

No comments:

Post a Comment