Function that returns the array with all string values transformed to lower case. When an array value is not a string, the original value is used. This function is the equivalent of the method .toLowerCase()
var array = new Array("A", "b", "C"); var lowercasearray = array.toLowerCase();
Parameter | Data type | Required | Description |
---|---|---|---|
array | array | Yes | The array to set to lower case |
Value | Meaning |
---|---|
array | Array wit all string values to lower case |