Type Method
.() Format string. CharAt (position)
Commentary
characters from a string.The first character position 0, the next one will be a subsequent increase.
Sample code - QC 2 JavaScript
str = "Sample"; str = "Sample";
n = str.charAt(1); n = str.charAt (1);
outputs[0] = n; outputs [0] = n;
Sample code - QC 3 JavaScript
function (__string output) main (__number inputNumber[2])
{
var result = new Object();
str = "Sample";
n = str.charAt(1);
result.output = n;
return result;
}