I am brand-spanking new to programming. I have learned XHTML and CSS and I'm attempting to learn Javascript now. After reading the first 2 chapters theres only one thing I'm having trouble getting my mind wrapped around:
I don't understand the functional differences described in the "before or after" box. I don't understand why "var age = 26; var ageCopy = age++;" will make ageCopy = 26 but placing the increment operator before "age" will make the value = 27.




Bookmarks