Closed BenjaminRCooper closed 10 years ago
This allows for better readability and reduces the number of characters you are required to type.
Bad Example
var myFirstVariable = "First Variable"; var mySecondVariable = "Second Variable";
Good Example
var myFirstVariable = "First Variable", mySecondVariable = "Second Variable";
+1
I presume your intention was to add a comma at the end of the first line in place of the semicolon?
Copy and paste job ;)
Updated mate :)
Ben
Implemented
This allows for better readability and reduces the number of characters you are required to type.
Bad Example
Good Example