Read CSV Array
As you noticed above using Read CSV Array, all the contents of the CSV file would be read and stored in the variable as String, if we want to retrieve value from one particular cell, Read CSV Array would be helpful.
Example and Syntax:
get("Mugs") is the column name from the CSV file.
JavaScript:
setVariablesIfNeeded('SERVER/C:/Naveen/November/demo.csv','HashDPL',0);
var $var1 = readCSVListHashMap("{ds}/demo.csv");
log($var1);
var $var2=$var1.get(0).get("Mugs");
log($var2);