I've started reading Eloquent Javascript, and there's an exercise about making a recursive function to check for evenness. I've made it in a couple different ways, it's quite simple, but for some reason I can't get it to work with negative numbers anymore. I had it working, then probably accidentally changed something, and now it only works for positives.
Could you please tell me why this code is 'wrong'?
(textfield.append just prints something to a textfield I've made in an html/css-document, so I can save the exercises in some kind of 'program'.)
function evencheck(n){
    if (n == 0){
        $('#textfield').append('Even');
    }
    if (n == 1 || n == -1){
        $('#textfield').append('Uneven');
    }
    else{
        if(n > 1){
            n -= 2;
            evencheck(n);
        }
        if(n < -1){
            n += 2;
            evencheck(n);
        }
    }
}
I know it can be written shorter, I've made a shorter form of it, but that didn't work on negatives either.
I know the problem is a stack overflow, but why is this happening?
 
     
     
    