Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 479 Bytes

upper.adoc

File metadata and controls

34 lines (27 loc) · 479 Bytes

upper()

Important

Deprecated in 5.0.

Replaced with method toUpperCase() of the string instance.

upper(string) => String

Converts string to uppercase.

Table 1. Parameters

string

String

String to convert

Return

Source string converted to uppercase.

Example
print(upper("aBcD")); //will print "ABCD"