Skip to content

Challenge Declare JavaScript Variables

Rafael J. Rodriguez edited this page May 14, 2016 · 2 revisions

Challenge Declare JavaScript Variables

When we store data in a data structure, we call it a variable. JavaScript variables are written in camel case. An example of camel case is: camelCase.

You can declare a variable this way

var myName = "Rafael";
Clone this wiki locally