I gained skills in design and illustration during my studies in university but my goal has always been to combine creative and technical principles. I am convinced that I can successfully fulfill myself as a Frontend Developer and this is where I begin.
The road will master the going.
function evenOrOdd(number)
{
if (number%2)
return 'Odd';
else
return 'Even';
}