toUpperForlist

Modified on Fri, 18 Aug 2023

Description

Convert each string in a list to uppercase

Syntax

toUpperForList(array)

Parameters

Input ParameterTypeDescription
arrayArrayThe list of input strings to convert to uppercase

Return value

Type
Array<any>

Sample

ExampleResultDescription
toUpperForlist(['abcd', 'Invoice Id'])['ABCD', 'INVOICE ID']The list of strings converted to uppercase

To view all the List functions, click here.

See Also