I would really appreciate some assistance on how I can print out the values of object1, object2 and object3 from the code down below. Using document.write(object1); for example prints out [object Object] instead of the actual values.
<script type="text/javascript">
var object1 = {value: 10};
var object2 = object1;
var object3 = {value: 10};
</script>
If it helps my browser is Google chrome.Thanks.