Skip to main content

Arrays In Javascript.

Consider this small code sample in Javascript.


var arrayOfNumbers=[1,2,3,4,5,6,78];
for(var index in arrayOfNumbers){
    console.log(index+1);
};

Output of this snippet will be

01
11
21
31
41
51
61

Now this is because Arrays are treated as Objects in Javascript, so index is iterating over keys in an object. In this case the object will be represented as follows

arrayOfNumbers={ "0":1,
                 "1":2,
                 "2":3,
                 "3":4,
                 "4":5,
                 "5":6,
                 "6":78}

Comments

Popular posts from this blog

Implemet Stack in python

  class Stack : def __init__ ( self , data ): self . stack = [] if ( data ): self . stack . append ( data ) def push ( self , data ): self . stack . append ( data ) def pop ( self ): popped_elemnt = self . stack . pop () def show ( self ): for i in self . stack : print ( i ) s = Stack ( 45 ) s . push ( 23 ) s . push ( 29 ) s . push ( 695 ) s . show () s . pop () s . show ()

wap in c to implement newton's forward interpolation formula.

Question -- using newton forward interpolation formula , find the area of a circle of diameter 82 metre                                from the given table of diameter and area of circle. Diameter(metre)      80          85           90          95            100 Area(metre^2)      5026        5674      6362     7088         7854 code to solve the above question. #include<stdio.h> #include<math.h> main() { int i,j,a=0,n; float x[10],fx[10],delfx[10],result=0,point,f,h,p,fact=1.000; printf("\nthe point at which u want to calculate the value\n"); scanf("%f",&point); printf("\nenter the no of elements in x\n"); scanf("%d",&n); printf("enter the elements of x\n"); for(i=0;i<n;i++) scanf("%f",&x[i]); h=fabs(x[0]-x[1]); p=(point-x[0])/h; printf("\nthe value of p is %f\n",p); printf("enter the elements of f(x)\n"); for(i=0;i<n;i++) scanf("%f",

Bold image

Launched in india.