- Shuffle
Toggle OnToggle Off
- Alphabetize
Toggle OnToggle Off
- Front First
Toggle OnToggle Off
- Both Sides
Toggle OnToggle Off
Front
How to study your flashcards.
Right/Left arrow keys: Navigate between flashcards.right arrow keyleft arrow key
Up/Down arrow keys: Flip the card between the front and back.down keyup key
H key: Show hint (3rd side).h key
![]()
PLAY BUTTON
![]()
PLAY BUTTON
![]()
4 Cards in this Set
- Front
- Back
|
Scope
|
Determines where a variable is accessible or visible
|
|
Good Variable Scope Design
|
* Improves code readability
* Decrease risks of accidental interactions within code |
|
Limit Scope
|
Page Class, Subroutines (methods), if statements, for loops, while loops, try catch blocks, etc
|
|
Functions and Classes
|
Help minimize variable scope by promoting reusability and improve readability
|