Skip to contents

Alert messages

Usage

alert(x)

alertDanger(x)

alertInfo(x)

alertSuccess(x)

alertWarning(x)

Arguments

x

character.

Value

Console output, with invisible return of x input.

Note

Updated 2021-08-18.

Examples

x <- "hello world"
alert(x)
#> → hello world
alertDanger(x)
#>  hello world
alertInfo(x)
#>  hello world
alertSuccess(x)
#>  hello world
alertWarning(x)
#> ! hello world