File tree 3 files changed +6
-6
lines changed
concepts/template-strings
exercises/concept/custom-signs/.docs
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ All types of expressions can be used with template strings.
22
22
``` javascript
23
23
const track = ' JavaScript' ;
24
24
25
- ` This track on exercism.io is ${ track .toUpperCase ()} .` ;
26
- // => This track on exercism.io is JAVASCRIPT.
25
+ ` This track on exercism.org is ${ track .toUpperCase ()} .` ;
26
+ // => This track on exercism.org is JAVASCRIPT.
27
27
```
28
28
29
29
When you are needing to have strings formatted on multiple lines:
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ All types of expressions can be used with template strings.
22
22
``` javascript
23
23
const track = ' JavaScript' ;
24
24
25
- ` This track on exercism.io is ${ track .toUpperCase ()} .` ;
26
- // => This track on exercism.io is JAVASCRIPT.
25
+ ` This track on exercism.org is ${ track .toUpperCase ()} .` ;
26
+ // => This track on exercism.org is JAVASCRIPT.
27
27
```
28
28
29
29
When you are needing to have strings formatted on multiple lines:
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ All types of expressions can be used with template strings.
22
22
``` javascript
23
23
const track = ' JavaScript' ;
24
24
25
- ` This track on exercism.io is ${ track .toUpperCase ()} .` ;
26
- // => This track on exercism.io is JAVASCRIPT.
25
+ ` This track on exercism.org is ${ track .toUpperCase ()} .` ;
26
+ // => This track on exercism.org is JAVASCRIPT.
27
27
```
28
28
29
29
When you are needing to have strings formatted on multiple lines:
You can’t perform that action at this time.
0 commit comments