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',
|
'v(\'ω\')v',
|
||||||
'🐡( \'-\' 🐡 )フグパンチ!!!!',
|
'🐡( \'-\' 🐡 )フグパンチ!!!!',
|
||||||
'🖕(´・_・`)🖕'
|
'🖕(´・_・`)🖕',
|
||||||
][Math.floor(Math.random() * 4)];
|
];
|
||||||
|
|
||||||
|
export default () => kaos[Math.floor(Math.random() * kaos.length)];
|
||||||
|
Loading…
Reference in New Issue
Block a user