← All freeCodeCamp videos

JavaScript Lingo: Variables & camelCase

21,665 views 234 likes 2015-08-23 1:40 Watch on YouTube ↗ freeCodeCamp ↗
Web DevelopmentFrontendJavaScriptVariables

Chapters

No chapter markers in this video's description.

Show the creator's full description
What constitutes a variable, and the reasoning behind camelCase. A variable, also referred to as 'var', is the name or placeholder for a boolean, string, number, or other piece of static information. Let's use google dev tools to inspect the free code camp home page and look for some variables. You 'declare' variables the first time with 'var' in front of it, but those can be referenced later in your script. camelCase is the way that JavaScript pushes words together and still keeps them legible. The first letter of the first word is lowercase, along with the remainder of the word, but the first letter of every consecutive word is capitalized. There are no spaces. Examples: brianaLovesHerPets, bestFoodIsCheese, and codeIsWorthLearning. When you name variables, utilize camelCase. Also try to keep the names descriptive and short so that others (and yourself!) can tell what that variable is referring to just by the name. ❤️ Support for this channel comes from our friends at Scrimba – the coding platform that's reinvented interactive learning: https://scrimba.com/freecodecamp

Description and video by freeCodeCamp.org. This page is an independent companion view; the video is embedded from YouTube.