javascript - CoffeeScript: Initialize or increment value in array - Stack Overflow

My application has different types of data about a fixed set of countries, kept in arrays of a consiste

My application has different types of data about a fixed set of countries, kept in arrays of a consistent order.

data = 
  oranges: [1,2,3]
  apples: [1,2,3]
  cabbages: [1,2,3]

These arrays get bined by various criteria into new arrays, and I find myself wanting to write code like this:

fruit = []
for key, arr of data                  # For each array
  if key in ['oranges', 'apples']     # It it meets certain criteria
    for val, i in arr                 # Use the values in the creation of a new array
      fruit[i] += val

This doesn't work because if fruit[i] is not initialized += won't work.

There are various ways around this.

1) Fill the new fruit array with zeros first:

for i in [0..len]
  fruit[i] = 0

2) Check if fruit[i] exists:

if fruit[i]?
  fruit[i] += val 
else 
  fruit[i] = val

Neither of these seem elegant. I tried extracting approach 2) into a function but I have to admit that I couldn't quite get my head round it. I thought about passing in fruit, cloning it (with arr.slice(0)) and then setting fruit to the output, but it didn't feel right to do this on every iteration.

The data format is fixed, but other than that my question is "what is the best way of handling this?" I'm open to answers that use CoffeeScript and/or ECMAScript 5 and/or JQuery.

My application has different types of data about a fixed set of countries, kept in arrays of a consistent order.

data = 
  oranges: [1,2,3]
  apples: [1,2,3]
  cabbages: [1,2,3]

These arrays get bined by various criteria into new arrays, and I find myself wanting to write code like this:

fruit = []
for key, arr of data                  # For each array
  if key in ['oranges', 'apples']     # It it meets certain criteria
    for val, i in arr                 # Use the values in the creation of a new array
      fruit[i] += val

This doesn't work because if fruit[i] is not initialized += won't work.

There are various ways around this.

1) Fill the new fruit array with zeros first:

for i in [0..len]
  fruit[i] = 0

2) Check if fruit[i] exists:

if fruit[i]?
  fruit[i] += val 
else 
  fruit[i] = val

Neither of these seem elegant. I tried extracting approach 2) into a function but I have to admit that I couldn't quite get my head round it. I thought about passing in fruit, cloning it (with arr.slice(0)) and then setting fruit to the output, but it didn't feel right to do this on every iteration.

The data format is fixed, but other than that my question is "what is the best way of handling this?" I'm open to answers that use CoffeeScript and/or ECMAScript 5 and/or JQuery.

Share Improve this question edited Aug 22, 2013 at 8:09 Derek Hill asked Aug 22, 2013 at 7:40 Derek HillDerek Hill 6,4745 gold badges58 silver badges79 bronze badges 3
  • Where is array defined? – elclanrs Commented Aug 22, 2013 at 7:44
  • @elclanrs sorry. Fixed typo. array is arr – Derek Hill Commented Aug 22, 2013 at 8:10
  • 2 fruit[i] = fruit[i] + 1 || 1? – david Commented Aug 22, 2013 at 8:15
Add a ment  | 

1 Answer 1

Reset to default 6

You can initialize element of the array with using ||= or ?= operator:

fruit[i] ||= 0
fruit[i] += val

The only difference is that ?= checks for null or undefined and ||= checks for any false value.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745635697a4637378.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信