Question: What will be the length of the array A after executing the Javascript code below? ` ` ` A = [ 1 , 1 ]

What will be the length of the array A after executing the Javascript code below?
```
A =[1,1]
for(var i =2; i <10; i++)
A[i]= A[i -1]+ A[ i -2];
```
What will be the length of the array A after executing the Javascript code below?
```
A =[1,1]
for(var i =2; i <10; i++)
A[i]= A[i -1]+ A[ i -2];
```
8
10
2
9

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Accounting Questions!