I looked at someone's code and found this line,
;[result] = await session.onWhatsApp(jid)
what is the meaning of using a semicolon before a square bracket?
what is the different between this:
[result] = await session.onWhatsApp(jid)
and this:
;[result] = await session.onWhatsApp(jid)