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.

@ -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.

@ -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.

Loading…
Cancel
Save