1.

What is JavaScript and camel case?​

Answer»

Historically, programmers have USED three WAYS of joining multiple words into one variable name:Hyphens:first-name, last-name, master-card, inter-city.Underscore:first_name, last_name, master_card, inter_city.Camel CASE:FirstName, LastName, MasterCard, InterCity.In programming languages, ESPECIALLY in JavaScript, camel case often starts with a lowercase letter:firstName, lastName, masterCard, interCity.



Discussion

No Comment Found