Skip to content

Commit 984e2cc

Browse files
rootroot
authored andcommitted
fix brain-calc
1 parent 3e467d0 commit 984e2cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BrainCacl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const operations = ()=>{
1010
const minIndex = 0;
1111
const MaxIndex = ops.length-1;
1212
const randomOp = ops[getRandomNum(minIndex, MaxIndex)];
13-
return `${firstNum} ${randomOp} ${secondNum}`
13+
return `${firstNum}${randomOp}${secondNum}`
1414
}
1515
const StartValueOPS = (exs)=>{
1616
const convert = exs.split(' ');

0 commit comments

Comments
 (0)