1
edit
Changes
no edit summary
|-
|}
== Coding Standards ==
* indentation - 2 spaces
* variable names:
e.g. My Birth Date ---> myBirDat
column length, Height ----> colLen, colHgt
row height, row length ---> rowHgt, rowLen
* coding styles & conventions:
e.g. function() {
if(...) {
/*some code*/
}
else {
/*some other code*/
}
}
* when you want help, commit and add a status message explaining your problem
* when you change teammates' code, please comment to explain changes:
e.g.
OLD:
if(/*some condition*/){
/*some logic*/
}
NEW:
if(/*some condition*/){
/*some new logic*/ //changed some logic to some new logic
}
==TASKS==