Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

isaac brakha
isaac brakha
6,781 Points

Possible to Shorten this line of code?

Hello, i have a feeling the following line of code, could be written more compactly.

let income = ["months":["enero":[ganancia, perdida, resultado],"febrero":[ganancia, perdida, resultado],"marzo":[ganancia, perdida, resultado],"abril":[ganancia, perdida, resultado],"mayo":[ganancia, perdida, resultado],"junio":[ganancia, perdida, resultado],"julio":[ganancia, perdida, resultado],"agosto":[ganancia, perdida, resultado],"septiembre":[ganancia, perdida, resultado],"octubre":[ganancia, perdida, resultado],"noviembre":[ganancia, perdida, resultado],"diciembre":[ganancia, perdida, resultado]]]

thanks in advance

Try using a for loop

1 Answer

Angel Caro
Angel Caro
11,831 Points

What are you trying to accomplish with this code? maybe then i can help you better.