//variable names, function names, and parameter names are camel case
var myVariable = 27;
var myFunction = function(myParameter){
console.log(myParameter);
};
//constants are uppercase
const MYCONSTANT = 27;
//constructor functions are pascalcase
var MyConstructor = function(){
this.myProperty = 27;
};
// camelCase
//The general rule is to start variable, function and method names
//with a lowercase letter, class and object names with a capitalized letter,
//and constants are typically all caps.
//Follow these conventions, and your scripts will
//be consistent with what others are doing, and much easier to understand.