# upperCase

## Description

Converts all characters in a text to uppercase.

## Input / Parameter

| Name   | Description                | Input Type  | Default | Options | Required |
| ------ | -------------------------- | ----------- | ------- | ------- | -------- |
| string | The value to be converted. | String/Text | -       | -       | Yes      |

## Output

| Description              | Output Type |
| ------------------------ | ----------- |
| Returns converted value. | String/Text |

## Callback

N/A

## Video

Coming soon.

## Example

The user wants to convert all the letters in the string from lower case to upper case.

### Step

1. Call the function `console`. Call the function `upperCase` inside the `value` parameter of the `console` function.\
   string: abc<br>

   ![](https://399701567-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FwmJ1RKjM2uNFaL6fO3Xu%2Fuploads%2Fgit-blob-a1cb6908b744143838b159a3b1055ddc40502761%2FupperCase-step-1.png?alt=media)

   ![](https://399701567-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FwmJ1RKjM2uNFaL6fO3Xu%2Fuploads%2Fgit-blob-8cdfbe8babaa49e3c4494aac782c48e0bed649e6%2FupperCase-step-2.png?alt=media)

### Result

![](https://399701567-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FwmJ1RKjM2uNFaL6fO3Xu%2Fuploads%2Fgit-blob-794961651a07c2b6751b110662cc213c6c084c0f%2FupperCase-result-1.png?alt=media)

## Links
