mirror of
https://github.com/microsoft/Web-Dev-For-Beginners.git
synced 2025-08-11 17:24:24 +02:00
Fix typo
This commit is contained in:
@@ -162,7 +162,7 @@ let myString1 = "Hello";
|
||||
let myString2 = "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.
|
||||
@@ -193,4 +193,4 @@ Take a look at [this list of JavaScript exercises](https://css-tricks.com/snippe
|
||||
|
||||
## Assignment
|
||||
|
||||
[Data Types Practice](assignment.md)
|
||||
[Data Types Practice](assignment.md)
|
||||
|
@@ -164,7 +164,7 @@ let myString1 = "Hello";
|
||||
let myString2 = "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.
|
||||
@@ -194,4 +194,4 @@ Schauen Sie sich [diese Liste der JavaScript-Übungen](https://css-tricks.com/sn
|
||||
|
||||
## 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";
|
||||
|
||||
`${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.
|
||||
@@ -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?
|
||||
|
||||
**Tarea**: [Práctica de tipos de datos](assignment.es.md)
|
||||
**Tarea**: [Práctica de tipos de datos](assignment.es.md)
|
||||
|
Reference in New Issue
Block a user