Scope is where a variable exists can be accessed in your code, and it’s surprisingly complicated. The short version is that a variable that was declared inside a block only exists inside that block. Great, what’s a block? In Java, it’s anything between a set of curly brackets { }. Blocks can be nested, too. A method inside of a class can see the class’s variables, and a block inside.. Read More