.toLowerCase()

 

Method that returns an array with all the values in lower case. When an array value is not a string, the original value is used.

The method .toLowerCase() is located in the file array.jsxinc.

Usage

var array = new Array("A", "b", "C");
var lowercasearray = array.toLowerCase();

Parameters

This method has no parameters.

Return values

Value Meaning
array Array with all the string values of the original array to lower case.