38.0k views
5 votes
What is the value of scores[3] after the following code is executed? var scores = [70, 20, 35, 15]; scores[3] = scores[0] + scores[2];

1 Answer

1 vote

scores[3]( 15 ) = scores[0]( 70 ) + scores[2]( 35 ) == 105

User Amarruedo
by
4.9k points