Skip to content

$argsCount

$argsCount will return the amount of given arguments.

Usage

$argsCount

Example(s)

This will return the amount of arguments in your message, for example, [prefix]argsCount Hello Bye will return two:

1
client.command({
2
name: "argsCount",
3
code: `
4
$argsCount
5
`
6
});