Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 489 Bytes

lower.adoc

File metadata and controls

34 lines (27 loc) · 489 Bytes

lower()

Important

Deprecated in 5.0.

Replaced with method toLowerCase() of the string instance.

lower(string) => String

Converts string to lowercase string.

Table 1. Parameters

string

String

String to convert

Return

Source string converted to lowercase.

Example
println(lower("aBcD")); // Will print "abcd"