Skip to content

Commit 1eb5da5

Browse files
committed
misc fixes in js docs
1 parent 57b7ae1 commit 1eb5da5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

02-languages/02-ejemplos/01-javascript-fundamentals/05 prototype model.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ var me = {
354354
},
355355
};
356356

357-
console.log(me.sayAge()); // "I'm 36 years old"
357+
me.sayAge(); // "I'm 36 years old"
358358

359359
///-- GETTERS & SETTERS *******************************************************
360360

02-languages/02-ejemplos/02-javascript-esnext/01 variables and operators.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ RESUMEN:
129129
+ Reasignable: NO
130130
131131
NOTA:
132-
- Ámbito de función: sólo las funciones representan un scope privado para ellas.
133-
- Ámbito de bloque: cualquier bloque, incluidas funciones, representan scope privado para ellas.
132+
- Ámbito de función: sólo las funciones representan un ámbito privado para ellas.
133+
- Ámbito de bloque: cualquier bloque, incluidas funciones, representan ámbito privado para ellas.
134134
*/
135135

136136
///-- OPERADORES *******************************************************

0 commit comments

Comments
 (0)