first letter of array in java code example
Example: how to return the first character in an array from a method java
public String firstElement(String[] array)
{
if (array.length >= 1)
{
return array[0];
}
else {
return "";
}
}