-
Notifications
You must be signed in to change notification settings - Fork 229
Tarea #70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tarea #70
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,19 +2,19 @@ importance: 4 | |
|
|
||
| --- | ||
|
|
||
| # Uppercase const? | ||
| # Mayusculas const? | ||
|
|
||
| Examine the following code: | ||
| Examina el siguiente codigo: | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Examina el siguiente código: |
||
|
|
||
| ```js | ||
| const birthday = '18.04.1982'; | ||
|
|
||
| const age = someCode(birthday); | ||
| ``` | ||
|
|
||
| Here we have a constant `birthday` date and the `age` is calculated from `birthday` with the help of some code (it is not provided for shortness, and because details don't matter here). | ||
| Aqui tenemos una constante `birthday` y `age` es calculada desde `birthday` con la ayuda de cierto codigo (no esta provisto para abreviacion, y porque los detalles no importan aqui). | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Aquí tenemos una constante |
||
|
|
||
| Would it be right to use upper case for `birthday`? For `age`? Or even for both? | ||
| Seria correcto usar mayusculas para `birthday`? Para `age`? O incluso para ambos? | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ¿Sería correcto usar mayúsculas para |
||
|
|
||
| ```js | ||
| const BIRTHDAY = '18.04.1982'; // make uppercase? | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
¿const en mayúsculas?