For Ignite week, we had to choose something that is a level up from what we usually do, which is why I choose to code a game in java since even though I code, I have never tried java. The image below is actually just a random image of coding.

Random Facts from Research:

  • Every method has a return, it can be void, boolean or int
  • Void simply means no return.
  • Boolean gives you a true or false return
  • Int or integer gives you a number as a return

The most important thing I learned from my research is how you can change the return simply by changing the first word in method, for example, you want it to give you a integer return instead of a true or false one, change boolean into int, if you don’t want a return, change it to void.