---
title: "startsWith"
canonical: "https://support.appfire.com/space/PSCONF/15303173/startsWith"
format: markdown
---
> Macro (aura-html)

> Macro (table-plus)
> 
> |  |  |  |  |
> | --- | --- | --- | --- |
> | **Syntax** | startsWith(str1, str2) | **Package** |  |
> | **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Returns "true" if **str1** starts with **str2**.

Returns "true" if **str1** starts with **str2**.

## Parameters

> Macro (table-plus)
> 
> | Parameter name | Type | Required | Description |
> | --- | --- | --- | --- |
> | str1 | String | Yes | Specifies a character expression to search for str2. |
> | str2 | String | Yes | Specifies a character expression to search for in str1. |

## Return Type

**Boolean (true/false)**

## Example

```javascript
if(startsWith("Fram, the polar bear", "Fram")) { 
  /* code block will execute */ 
}
```

## See also

> Macro (contentbylabel)