Answer the question
In order to leave comments, you need to log in
How to pass the division operator to the callback value?
const gameOptions = {
reply_markup: JSON.stringify({
inline_keyboard:[
[{text: 'Pi',callback_data: Math.PI.toFixed(2)}],[{text: '/',callback_data: }],
]
})
}
Answer the question
In order to leave comments, you need to log in
In InlineKeyboardButton , a string is expected for the field callback_data
, so:
callback_data: "/"
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question