JavaScript problem in a WordPress PAGE

Change

var x = +y + +z;

to

var x = Number(y) + Number(z);

Done~

tech