wrog: (Default)
[personal profile] wrog
  var answer = [];

  for (word in ['this','language','can','bite','me']) {
     answer.push(word);
  }
Just to make it easy, I'll tell you that the language in question is Javascript, [...] is an array constructor, and .push appends its arguments to the end of the list/array. The answer, of course, is...

  [0,1,2,3,4]
See, Javascript doesn't actually have arrays, Javascript has objects with numbered properties. And since foo.['whatever'] is defined to be foo.whatever with numbers and strings automagically converting to each other as needed, you'll never, ever notice the difference.

Unless, of course, you try to use for, which iterates through property names, not property values.

I suppose, to be completely fair, I should note that in Perl, some idiot could conceivably do
  for my $word (['this','language','can','bite','me']) {
     push @answer, $word;
  }
and get a list of length 1 for their trouble. Oh, well...

This account has disabled anonymous posting.
If you don't have an account you can create one now.
HTML doesn't work in the subject.
More info about formatting

Profile

wrog: (Default)
wrog

Looking For ... ?

my posts on:


February 2026

S M T W T F S
1234567
8910 1112 1314
15161718192021
22232425262728

Links

Style Credit

Expand Cut Tags

No cut tags
Page generated Jun. 11th, 2026 01:16 am
Powered by Dreamwidth Studios