Find the value of a variable on Java Script code

Hi everyone, please consider the following code segment and tell me what is the values z after executing the code segment
<script language="JavaScript" type="text/JavaScript">
<!–
x = 800;
y = 45;
x += 60;
y %= 1.5;
z = x + y;
–>
</script>
