SCALA Collection..
-------- ARRAY-----------
collection of homogenious data.
0 based index
serching is efficirnt
adding data at is not efficient bcoz it has fixed size defined initially
scala> val a = Array(1, 2, 23, 23)
a: Array[Int] = Array(1, 2, 23, 23)
scala...
theman.hashnode.dev3 min read