error

Anonymous
javascript
11/25/2022 10:22 AM
412 B
19
Indexable
bot.command("value", (ctx) => {
  let input = ctx.message.text.split(" ");
  
  if (input[0].length != 1) {
    ctx.reply("PUT BIN");
    return;
  } else if (input[0].length > 6) {
    ctx.reply("> 6");
    return;
  } else if (input[0].length < 6) {
    ctx.reply("< 6");
    return;
  }

})
Editor is loading...