Skip to content

Commit

Permalink
update main.js
Browse files Browse the repository at this point in the history
changed the division operator '/' to  ÷
  • Loading branch information
Adithya212 committed Jul 30, 2023
1 parent 9e1cc4e commit a5238e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function generateNumbers_and_sign(diff_lvl, sign) {
} else if (sign === 'multiplication') {
arithmetic_sign = 'x';
} else if (sign === 'division') {
arithmetic_sign = '/';
arithmetic_sign = '÷';
}

// AVOIDING REPEATING PREVIOUS QUESTION's NUMBERS
Expand Down

0 comments on commit a5238e4

Please sign in to comment.