June 2014
Intermediate to advanced
696 pages
38h 52m
English
JavaScript uses data types to determine how to handle data that is assigned to a variable. The variable type determines what operations you can perform on the variable, such as looping or executing. The following list describes the types of variables that you will most commonly work with in this book:
String: This data type stores character data as a string. The character data is specified by either single or double quotes. All the data contained in the quotes will be assigned to the string variable. For example:
var myString = 'Some Text';var anotherString = 'Some More Text'; ...
Read now
Unlock full access