(JS) 如何从消息中获取值?

(JS) How can I get the values from the message?

我有一个类似“/set 18472000 1000”的命令,其中 18472000 是 TG user_id,1000 是金额。如何从消息中获取这些值并将其放入变量?

const input = '/set 18472000 1000'

const fields = input.split(' ')

const [ , id, value ] = fields

console.log(id)

console.log(value)