Mostly you're probably working with these scopes:
Variables scope is the scope where all variables are assigned to when nothing else is intentionally declared (like the window scope in JavaScript).
Form scope When you send a form to your server, all the form fields which can be identified (by se...