Skip to content

Commit 69570cc

Browse files
committed
pseudo-array -> pseudo array
1 parent 53827f2 commit 69570cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

04_data.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ The `arguments` object has a `length` property that tells us the
806806
amount of arguments that were really passed to the function. It also
807807
has a property for each argument, named 0, 1, 2, and so on.
808808

809-
(((array,methods)))(((pseudo-array)))If that sounds a lot like an
809+
(((array,methods)))(((pseudo array)))If that sounds a lot like an
810810
array to you, you're right, it _is_ a lot like an array. But this
811811
object, unfortunately, does not have any array methods (like `slice`
812812
or `indexOf`), so it is a little harder to use than a real array.

05_higher_order.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ amount of arguments to it, it wouldn't know how many argument were
337337
_really_ given.
338338

339339
For these kinds of situations, JavaScript functions have an `apply`
340-
method. The `apply` method gets passed an array (or pseudo-array) of
340+
method. The `apply` method gets passed an array (or pseudo array) of
341341
arguments, and will call the function with those arguments.
342342

343343
[source,javascript]

0 commit comments

Comments
 (0)