Skip to content

Commit a8455f9

Browse files
committed
2 parents edbe004 + 7cb89de commit a8455f9

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

1-js/05-data-types/04-array/2-create-array/task.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Let's try 5 array operations.
1010
2. Append "Rock-n-Roll" to the end.
1111
3. Replace the value in the middle by "Classics". Your code for finding the middle value should work for any arrays with odd length.
1212
4. Strip off the first value of the array and show it.
13-
5. Prepend `Rap` and `Reggie` to the array.
13+
5. Prepend `Rap` and `Reggae` to the array.
1414

1515
The array in the process:
1616

@@ -19,6 +19,6 @@ Jazz, Blues
1919
Jazz, Bues, Rock-n-Roll
2020
Jazz, Classics, Rock-n-Roll
2121
Classics, Rock-n-Roll
22-
Rap, Reggie, Classics, Rock-n-Roll
22+
Rap, Reggae, Classics, Rock-n-Roll
2323
```
2424

1-js/05-data-types/05-array-methods/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ alert( str.split('') ); // t,e,s,t
472472
```
473473
````
474474

475-
The call [arr.join(str)](mdn:js/Array/join) does the reverse to `split`. It creates a string of `arr` items glued by `str` beween them.
475+
The call [arr.join(str)](mdn:js/Array/join) does the reverse to `split`. It creates a string of `arr` items glued by `str` between them.
476476

477477
For instance:
478478

1-js/07-object-oriented-programming/08-class-patterns/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
In object-oriented programming, a *class* is an extensible program-code-template for creating objects, providing initial values for state (member variables) and implementations of behavior (member functions or methods).
66
```
77

8-
There's a special syntax construct and a keyword `class` in JavaScript. But before studying it, we should consider that the term "class" comes the theory of object-oriented programming. The definition is cited above, and it's language-independant.
8+
There's a special syntax construct and a keyword `class` in JavaScript. But before studying it, we should consider that the term "class" comes from the theory of object-oriented programming. The definition is cited above, and it's language-independant.
99

1010
In JavaScript there are several well-known programming patterns to make classes even without using the `class` keyword. And here we'll talk about them first.
1111

LICENSE.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,3 @@ Under the following terms:
1212
- **Attribution** — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
1313
- **NonCommercial** — You may not use the material for commercial purposes.
1414
- **ShareAlike** — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
15-
16-
To use the tutorial commercially, like printing a book and selling it, please get an approval.

0 commit comments

Comments
 (0)