Code A: var x = 10; y = –x + 1; alert(y); Code B: var x = 10; y = x– + 1; alert(y); What is the output for code A and B?