I need help with JavaScript

by 1 replies
1
Hi everyone, please consider the following code segment and tell me what is the 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>
#programming #code #javascripthi #segment

Next Topics on Trending Feed

  • 1

    Hi everyone, please consider the following code segment and tell me what is the the values z after executing the code segment <script language="JavaScript" type="text/JavaScript"> <!--