Array in Scala
var myArray : Array[Int] = new Array[Int](10);
/*
To create an Array with String data type, replace
Int with String
*/Last updated
var myArray : Array[Int] = new Array[Int](10);
/*
To create an Array with String data type, replace
Int with String
*/Last updated