endWith

Last update: 2023-01-23
  • Created for:
  • Experienced
    Developer

Returns true if the second parameter is a suffix of the first one.

Category

String

Function syntax

endWith(<parameters>)

Parameters

Parameter Type
string string
suffix string

Signature and returned type

endWith(<string>,<string>)

Returns a boolean.

Example

endWith("Hello World", "World")

Returns true.

endWith("Hello World", "Hello")

Returns false.

On this page