Skip to content

Commit

Permalink
Correciones minimas
Browse files Browse the repository at this point in the history
  • Loading branch information
npminit-dev committed Nov 23, 2023
1 parent 956731d commit 182dd31
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const readline = require('readline')

let questCount = 1
let correct = 0
const ops = ['+', '-']
const ops = ['+', '-', '*', '/']

const createIF = (readline) => readline.createInterface({
input: process.stdin,
Expand Down Expand Up @@ -34,9 +34,9 @@ const getOperation = (ops, quesCount) => {

console.clear()
console.log(
` ---- MATH OPS GAME ----
All result must be rounded to nearest the integer
3 seconds contown per question...`)
` <--- MATH OPS GAME --->
All results must be rounded to the nearest integer
3 seconds contdown per question...`)

const question =() => {
return new Promise((res, rej) => {
Expand Down

0 comments on commit 182dd31

Please sign in to comment.