Good coding practices
Last updated
Last updated
BB have good libs. Just install needed library to your bot.
Don't install unnecessary libraries. Your bot might be slow after that.
You can organize your commands in folders.
You can use folder in BJS too. For example in before All command:
Do you have children.
Two boys and one girl. You do not call them b1, b2 ang g1, are you not ?
So why do you call your variables like that?
Bad examples:
x1
y2
d3
Good:
currentLimit
maxCount
userName
Bad code:
Good code:
Bad code:
Each getProperty method spent above 10-100 ms for execution. So if you have 10 getProperty methods bot can spent above 1 sec for execution! It is slowly
Use JSON type:
Do not repeat youself!
Bad code:
Good code: