Suppose variables are declared and initialised as follows:
var firstArray = ['I','V','X','L','C','D','M'];
var secondArray = [1,5,10,50,100,500,1000];
var myString = 'INVICTUS';
Write down the value of each of the following????
(a) firstArray[2]
(b) firstArray.length
(c) The index of 'M'in firstArray
(d) The index of the first element in secondArray
(e) firstArray.length == myString.length
(f) firstArray[secondArray[1]]
(g) firstArray[2] < firstArray[6]
(h) myString.charAt(3) == firstArray[0]
(i) myString.charAt(myString.indexOf('S'))
(j) myString.indexOf(firstArray[3])