Use Array.prototype.length to avoid magic number
This commit is contained in:
parent
aa9fe38c25
commit
fa95641f88
@ -1,6 +1,8 @@
|
||||
export default () => [
|
||||
const kaos = [
|
||||
'(=^・・^=)',
|
||||
'v(\'ω\')v',
|
||||
'🐡( \'-\' 🐡 )フグパンチ!!!!',
|
||||
'🖕(´・_・`)🖕'
|
||||
][Math.floor(Math.random() * 4)];
|
||||
'🖕(´・_・`)🖕',
|
||||
];
|
||||
|
||||
export default () => kaos[Math.floor(Math.random() * kaos.length)];
|
||||
|
Loading…
Reference in New Issue
Block a user