Merge pull request #80 from coderjojo/main

Fix typo in readme
pull/84/head
Jen Looper 4 years ago committed by GitHub
commit 2258e0cdba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -162,7 +162,7 @@ let myString1 = "Hello";
let myString2 = "World"; let myString2 = "World";
`${myString1} ${myString2}!` //Hello World! `${myString1} ${myString2}!` //Hello World!
`${myString1}, ${myString2}!` //Hello World! `${myString1}, ${myString2}!` //Hello, World!
``` ```
You can achieve your formatting goals with either method, but template literals will respect any spaces and line breaks. You can achieve your formatting goals with either method, but template literals will respect any spaces and line breaks.
@ -193,4 +193,4 @@ Take a look at [this list of JavaScript exercises](https://css-tricks.com/snippe
## Assignment ## Assignment
[Data Types Practice](assignment.md) [Data Types Practice](assignment.md)

@ -164,7 +164,7 @@ let myString1 = "Hello";
let myString2 = "World"; let myString2 = "World";
`${myString1} ${myString2}!` //Hello World! `${myString1} ${myString2}!` //Hello World!
`${myString1}, ${myString2}!` //Hello World! `${myString1}, ${myString2}!` //Hello, World!
``` ```
Sie können Ihre Formatierungsziele mit beiden Methoden erreichen, aber Vorlagenliterale berücksichtigen alle Leerzeichen und Zeilenumbrüche. Sie können Ihre Formatierungsziele mit beiden Methoden erreichen, aber Vorlagenliterale berücksichtigen alle Leerzeichen und Zeilenumbrüche.
@ -194,4 +194,4 @@ Schauen Sie sich [diese Liste der JavaScript-Übungen](https://css-tricks.com/sn
## Zuordnung ## Zuordnung
[Praxis für Datentypen](assignment.de.md) [Praxis für Datentypen](assignment.de.md)

@ -160,7 +160,7 @@ let myString1 = "Hello";
let myString2 = "World"; let myString2 = "World";
`${myString1} ${myString2}!` //Hello World! `${myString1} ${myString2}!` //Hello World!
`${myString1}, ${myString2}!` //Hello World! `${myString1}, ${myString2}!` //Hello, World!
``` ```
Puede lograr sus objetivos de formato con cualquier método, pero los literales de plantilla respetarán los espacios y saltos de línea. Puede lograr sus objetivos de formato con cualquier método, pero los literales de plantilla respetarán los espacios y saltos de línea.
@ -184,4 +184,4 @@ Los booleanos pueden tener solo dos valores: `true` o `false`. Los valores boole
Eche un vistazo a [esta lista de ejercicios de JavaScript](https://css-tricks.com/snippets/javascript/) y pruebe uno. ¿Qué aprendiste? Eche un vistazo a [esta lista de ejercicios de JavaScript](https://css-tricks.com/snippets/javascript/) y pruebe uno. ¿Qué aprendiste?
**Tarea**: [Práctica de tipos de datos](assignment.es.md) **Tarea**: [Práctica de tipos de datos](assignment.es.md)

Loading…
Cancel
Save