Skip to content

Commit d184663

Browse files
authored
Merge branch 'master' into es.javascript.info.1-08-01-ph
2 parents 9c0c4ee + 84e83da commit d184663

File tree

919 files changed

+19935
-23651
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

919 files changed

+19935
-23651
lines changed

1-js/01-getting-started/1-intro/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Una introducción a JavaScript
22

3-
Veamos que tiene de especial JavaScript, que podemos lograr con este lenguaje y que otras tecnologías se integran bien con él.
3+
Veamos qué tiene de especial JavaScript, qué podemos lograr con este lenguaje y qué otras tecnologías se integran bien con él.
44

55
## ¿Qué es JavaScript?
66

7-
_JavaScript_ Fue creado para _"dar vida a la páginas web"_.
7+
_JavaScript_ Fue creado para _"dar vida a las páginas web"_.
88

99
Los programas en este lenguaje son llamados _scripts_. Se pueden escribir directamente en el HTML de una página web y ejecutarse automáticamente a medida que se carga la página.
1010

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<body>
5+
6+
<script>
7+
alert( "I'm JavaScript!" );
8+
</script>
9+
10+
</body>
11+
12+
</html>

1-js/02-first-steps/04-variables/3-uppercast-constant/task.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@ importance: 4
22

33
---
44

5-
# Uppercase const?
5+
# ¿const mayúsculas?
66

7-
Examine the following code:
7+
Examina el siguiente código:
88

99
```js
1010
const birthday = '18.04.1982';
1111

1212
const age = someCode(birthday);
1313
```
1414

15-
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).
15+
Aquí tenemos una constante `birthday` y `age` es calculada desde `birthday` con la ayuda de cierto código (no está provisto para abreviar y porque los detalles no importan aquí).
1616

17-
Would it be right to use upper case for `birthday`? For `age`? Or even for both?
17+
¿Sería correcto usar mayúsculas para `birthday`? ¿Para `age`? ¿O incluso para ambos?
1818

1919
```js
2020
const BIRTHDAY = '18.04.1982'; // make uppercase?

0 commit comments

Comments
 (0)