JavaScript Tutorial For Beginners #21 – Variable Scope




Hey all, this JavaScript tutorial for beginners will introduce the concept of variable scope. Variables can have either global or local scope.

A global variable is initialized at the ‘top-level’ of your document, and can be used anywhere within your document after it has been declared. A local variable has only local scope, and can only be used within the function in which it was initialized.

As always, fire away with any questions 🙂

SUBSCRIBE TO CHANNEL – https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg?sub_confirmation=1

========== JavaScript for Beginners Playlist ==========

========== CSS for Beginners Playlist ==========

========== HTML for Beginners Playlist ==========

========== The Net Ninja ============

For more front-end development tutorials & to black-belt your coding skills, head over to – https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg or http://thenetninja.co.uk

========== Social Links ==========

Twitter – @TheNetNinja – https://twitter.com/thenetninjauk

Original source


10 responses to “JavaScript Tutorial For Beginners #21 – Variable Scope”

  1. Excellent Video! Question: by pulling average out of the local variable and setting it as a global AND setting it to zero, what does that mean/do to its "initial value"? Or is this just the standard initial value to give? Thanks in advance.

Leave a Reply