f . . . ) statement A r r a y , I t e r a t o r /I t e r a b l e support f o r ( l e t v o f [ 1 , 3 , 5 , 7 ] ) { . . . f o r ( l e t [ i n d e x , v a l u e ] o f [ " a " , " b " , " c " ] . e n t r i e s ( ) ) { . . . A r r a y , I t e r a t o r /I t e r a b l e comprehension l e t s q u a r e d = [ f o r ( x o f [ 1 , 2 , 3 ] ) x * x ] ; / / - > [ 1 , 4 , 9 ] l e t s q u a r e d O d d = [ f o r ( x o f [ 1 , 2 , 3 ] ) i f ( x % 2 ) x * x ] ; / / - > [ 1 , 9 ] l e t v = [ f o r ( [ i n d e x , v a l u e ] o f [ " a " , " b " , " c " ] . e n t r i e s ( ) ) [ v a l u e . t o U p p e r C a s e ( ) , i n d e x ] ] ; / / v = [ [ " A " , 0 ] , [ " B " , 1 ] , [ " C " , 2 ] ]