Last active
December 6, 2016 16:02
-
-
Save kavyasukumar/aab89c03c62c67cbbdd7b65ac8e95947 to your computer and use it in GitHub Desktop.
Code commenting example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bad comment | |
// Dividing time by 24.623 and converting to integer | |
var days = parseInt(time / 24.623); | |
// Better code and comment | |
const HOURS_IN_MARS_DAY = 24.623; | |
// Calculate the number of full days spent on mars | |
var daysOnMars = parseInt(timeSpentOnMars / HOURS_IN_MARS_DAY); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment