使用我的 micro:bit,我试图将调用的变量的值添加sendText
到数组中,而不会覆盖其先前为该变量存储的值。
input.onGesture(Gesture.Shake, () => {
list.push(sendText)
binSend = 0
basic.showString(sendText)
})
我的数组称为列表
let list: string[] = []
我试图将单个字符存储在一个数组中,然后输出它们。如果有比使用数组更好的选择,我很乐意接受。