Question:What is the output of the following code?
<script>
 var a=4;
 document.write(a++);
 document.write(++a);
 document.write(a--);
 document.write(--a);
</script>
 

A 4654 

B 4664 

C 5664 

D 4654 

+ Answer
+ Report
Total Preview: 875

Copyright © 2024. Powered by Intellect Software Ltd