473,405 Members | 2,261 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Newbyish question about Array slice method

I bought Crockford's "javascript: The Good Parts" yesterday to help
build my JavaScript foo.

On page 44, he gives an implementation of the curry function:

Function.method('curry', function() {
var slice = Array.prototype.slice,
args = slice.apply(arguments),
that = this;

return function() {
return that.apply(null, args.concat(slice.apply(arguments)));
};
});

I'm trying to reconcile the two invocations of slice.apply(arguments)
with the notion that the slice method in Array's prototype has two
arguments, the second of which is optional.

I thought that this would mean that those invocations would need to be
slice.apply(arguments,0) in order to supply the start argument, and in
"leap before you look" mode I submitted an erratum to O'Reilly.

Now however, I've actually tried the code in both Firefox and Safari,
and it seems to work as it's given in the book.

So is the first argument to slice really optional despite the various
doc's I've checked (including and besides the book in question), or
are Firefox and Safari both working outside of the JS spec here, or is
there something else I'm missing?
Jun 1 '08 #1
7 1908
VK
On Jun 1, 9:52 pm, RubyRedRick <rick.denat...@gmail.comwrote:
So is the first argument to slice really optional despite the various
doc's I've checked (including and besides the book in question), or
are Firefox and Safari both working outside of the JS spec here, or is
there something else I'm missing?
The docs are wrong: at least for an engine strictly implementing the
relevant ECMA-262 internal algorithms.

Array slice method production:

15.4.4.10
....
4. Call ToInteger(start).
5. If Result(4) is negative, use max((Result(3)+Result(4)),0); else
use min(Result(4),Result(3)).

Internal ToInteger production:

9.4 ToInteger
1. Call ToNumber on the input argument.
2. If Result(1) is NaN, return +0.
....

This way slice() without arguments still will equal to slice(0) so
still be working. This is what I don't like rather often in
Crockford's approaches: they are bearing to much of mannerism for my
blood, to much of coding just for coding. Respectively sometimes
_unnecessary_ dependence on strict engine implementations. Does it
kill anyone to provide the argument? Why to transform a business
solution into some kind of engine's acid test? It is strictly my
opinion and the book contains an ocean of interesting approaches. Just
be warned that it is not a book I would recomment to anyone to learn
javascript: it is for advanced programmers willing to improve their
skills. Again strictly IMHO.
Jun 1 '08 #2
RubyRedRick wrote:
>I bought Crockford's "javascript: The Good Parts" yesterday
to help build my JavaScript foo.

On page 44, he gives an implementation of the curry function:

Function.method('curry', function() {
var slice = Array.prototype.slice,
args = slice.apply(arguments),
that = this;

return function() {
return that.apply(null, args.concat(slice.apply(arguments)));
};
});

I'm trying to reconcile the two invocations of
slice.apply(arguments) with the notion that the slice method in
Array's prototype has two arguments, the second of which is
optional.

I thought that this would mean that those invocations would need
to be slice.apply(arguments,0) in order to supply the start
argument, and in "leap before you look" mode I submitted an
erratum to O'Reilly.

Now however, I've actually tried the code in both Firefox and
Safari, and it seems to work as it's given in the book.

So is the first argument to slice really optional despite the
various doc's I've checked (including and besides the book in
question), or are Firefox and Safari both working outside of
the JS spec here, or is there something else I'm missing?
Perhaps you are falling to look at the JS Spec itself (ECMA 262, 3rd
Ed.)? the forth step in the algorithm for - Array.prototype.slice - is
"Call ToInteger(start)", and the internal ToInteger function will return
numeric zero when its input is the undefined value (which is what its
input is going to be when the argument is not passed in).

A much more interesting question is why use - apply - when you could
use - call -? Not that the former is a mistake (the handling of the
undefined second argument is fully specified) but the - apply - method
has a length of 2 and the call method has a length of 1, which suggests
it should be the one to use when there is only going to be one argument.

Richard.

Jun 1 '08 #3
On Jun 1, 2:37*pm, "Richard Cornford" <Rich...@litotes.demon.co.uk>
wrote:
RubyRedRick wrote:
I bought Crockford's "javascript: The Good Parts" yesterday
to help build my JavaScript foo.
On page 44, he gives an implementation of the curry function:
Function.method('curry', function() {
var slice = Array.prototype.slice,
args = slice.apply(arguments),
that = this;
*return function() {
* *return that.apply(null, args.concat(slice.apply(arguments)));
};
});
A much more interesting question is why use - apply - when you could
use - call -? Not that the former is a mistake (the handling of the
undefined second argument is fully specified) but the - apply - method
has a length of 2 and the call method has a length of 1, which suggests
it should be the one to use when there is only going to be one argument.
I don't see how call could be used here. The method is being used as
a trick to obtain a real array object from arguments which is a pseudo-
array and lacks methods.

Jun 1 '08 #4
RubyRedRick wrote:
"Richard Cornford" wrote:
>RubyRedRick wrote:
>>I bought Crockford's "javascript: The Good Parts" yesterday
to help build my JavaScript foo.
On page 44, he gives an implementation of the curry function:
Function.method('curry', function() {
var slice = Array.prototype.slice,
args = slice.apply(arguments),
[1]--------------^^^^^
>>that = this;
return function() {
return that.apply(null, args.concat(slice.apply(arguments)));
[2]----------------------------------------------^^^^^
>>};
});
>A much more interesting question is why use - apply - when you could
use - call -? Not that the former is a mistake (the handling of the
undefined second argument is fully specified) but the - apply - method
has a length of 2 and the call method has a length of 1, which suggests
it should be the one to use when there is only going to be one argument.

I don't see how call could be used here. The method is being used as
a trick to obtain a real array object from arguments which is a pseudo-
array and lacks methods.
You can use Function.prototype.call() instead of Function.prototype.apply()
at [^1] and [^2] because there is no second argument there.
PointedEars
Jun 1 '08 #5
VK
On Jun 1, 9:52 pm, RubyRedRick <rick.denat...@gmail.comwrote:
So is the first argument to slice really optional despite the various
doc's I've checked (including and besides the book in question), or
are Firefox and Safari both working outside of the JS spec here, or is
there something else I'm missing?
The docs are wrong: at least for an engine strictly implementing the
relevant ECMA-262 internal algorithms.

Array slice method production:

15.4.4.10
....
4. Call ToInteger(start).
5. If Result(4) is negative, use max((Result(3)+Result(4)),0); else
use min(Result(4),Result(3)).

Internal ToInteger production:

9.4 ToInteger
1. Call ToNumber on the input argument.
2. If Result(1) is NaN, return +0.
....

This way slice() without arguments still will equal to slice(0) so
still be working. This is what I don't like rather often in
Crockford's approaches: they are bearing to much of mannerism for my
blood, to much of coding just for coding. Respectively sometimes
_unnecessary_ dependence on strict engine implementations. Does it
kill anyone to provide the argument? Why to transform a business
solution into some kind of engine's acid test? It is strictly my
opinion and the book contains an ocean of interesting approaches. Just
be warned that it is not a book I would recomment to anyone to learn
javascript: it is for advanced programmers willing to improve their
skills. Again strictly IMHO.
Jun 27 '08 #6
On Jun 1, 2:37*pm, "Richard Cornford" <Rich...@litotes.demon.co.uk>
wrote:
RubyRedRick wrote:
I bought Crockford's "javascript: The Good Parts" yesterday
to help build my JavaScript foo.
On page 44, he gives an implementation of the curry function:
Function.method('curry', function() {
var slice = Array.prototype.slice,
args = slice.apply(arguments),
that = this;
*return function() {
* *return that.apply(null, args.concat(slice.apply(arguments)));
};
});
A much more interesting question is why use - apply - when you could
use - call -? Not that the former is a mistake (the handling of the
undefined second argument is fully specified) but the - apply - method
has a length of 2 and the call method has a length of 1, which suggests
it should be the one to use when there is only going to be one argument.
I don't see how call could be used here. The method is being used as
a trick to obtain a real array object from arguments which is a pseudo-
array and lacks methods.

Jun 27 '08 #7
RubyRedRick wrote:
"Richard Cornford" wrote:
>RubyRedRick wrote:
>>I bought Crockford's "javascript: The Good Parts" yesterday
to help build my JavaScript foo.
On page 44, he gives an implementation of the curry function:
Function.method('curry', function() {
var slice = Array.prototype.slice,
args = slice.apply(arguments),
[1]--------------^^^^^
>>that = this;
return function() {
return that.apply(null, args.concat(slice.apply(arguments)));
[2]----------------------------------------------^^^^^
>>};
});
>A much more interesting question is why use - apply - when you could
use - call -? Not that the former is a mistake (the handling of the
undefined second argument is fully specified) but the - apply - method
has a length of 2 and the call method has a length of 1, which suggests
it should be the one to use when there is only going to be one argument.

I don't see how call could be used here. The method is being used as
a trick to obtain a real array object from arguments which is a pseudo-
array and lacks methods.
You can use Function.prototype.call() instead of Function.prototype.apply()
at [^1] and [^2] because there is no second argument there.
PointedEars
Jun 27 '08 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Maarten van Reeuwijk | last post by:
Hello, I am using the Numeric package, and I need to strip edge cells off an array (dimension unknown) in an a-priori unknown direction. I implented this as follows: def el_remove_bcells(var,...
0
by: Maarten van Reeuwijk | last post by:
I am constructing a "placeholder array" to mimick Numeric arrays. I have a 3D regular structured domain, so I can describe the axis with 3 1D arrays x, y and z. All the variables defined on this...
2
by: Dave Bazell | last post by:
I have a multidimensional array, say 20 x 6, and I want to take a subset of the rows. I have an index array @indx=(1,3,12,17) for example, and what I want to say is @new_array = $data I know...
40
by: Ron Adam | last post by:
After considering several alternatives and trying out a few ideas with a modified list object Bengt Richter posted, (Thank You), I think I've found a way to make slice operation (especially far end...
65
by: Steven Watanabe | last post by:
I know that the standard idioms for clearing a list are: (1) mylist = (2) del mylist I guess I'm not in the "slicing frame of mind", as someone put it, but can someone explain what the...
1
by: Ivan Vinogradov | last post by:
Hello All, this seems like a trivial problem, but I just can't find an elegant solution neither by myself, nor with google's help. I'd like to be able to keep an array representing coordinates...
1
by: fahd | last post by:
Hi, I'm trying to communicate with an unmanaged c++ dll that takes two 2d float arrays, one as input with data in it and the other will have the result of the operation in it as follows: bool...
12
by: lorlarz | last post by:
In the code sample below, how are arguments a legitimate argument to Array.slice? Function.prototype.bind = function(){ var fn = this, args = Array.prototype.slice.call(arguments), object =...
9
by: lorlarz | last post by:
I still have a question regarding the following code, in a commonly used routine. First, Here's the code in question: Function.prototype.bind = function(){ var fn = this, args =...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.