Why for finding the length of the array it is like
array.length;
and not
array.length();
I know array is not a class and so length is not a function so no (); If length is not a function then what is it and how does it return length? If array is not a class then what is it? What does the compiler do when it finds array and how does it implement it does it make multiple variable?