Skip to content

Commit 411ee55

Browse files
author
Carlos Green
committed
nice
1 parent 96a8d91 commit 411ee55

File tree

17 files changed

+12
-1
lines changed

17 files changed

+12
-1
lines changed

Chapter1/chapter1.js renamed to Chapter1JavaScript/chapter1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ var aPerson = new Person("John","Quincy","Public");
2929
console.log("First name: " + aPerson.first);
3030
console.log("Middle name: " + aPerson.middle);
3131
console.log("Last name: " + aPerson.last);
32-
console.log("Initials: " + aPerson.initials());
32+
console.log("Initials: " + aPerson.initials());

Chapter2Arrays/Arrays.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
JAGGED ARRAYS
2+
3+
A Jagged arrays is an array where the rows in the array may have
4+
a different number of elements.
5+
6+
One row may have three elements
7+
Another may have five elements
8+
another may have just one element.
9+
10+
Many languages have problems with jagged arrays, but javascript
11+
does not since we can compute the length of any row
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)