From 6c3c3f2de6feb2cf015bbb5fb1dfab46148c1f8f Mon Sep 17 00:00:00 2001 From: NetMan <13informatyka14@gmail.com> Date: Sat, 30 Dec 2023 15:17:07 +0100 Subject: [PATCH] Completed exercise 03 --- 03-lets-do-some-math/math.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/03-lets-do-some-math/math.js b/03-lets-do-some-math/math.js index ec2f4a2..4c44a24 100644 --- a/03-lets-do-some-math/math.js +++ b/03-lets-do-some-math/math.js @@ -5,10 +5,10 @@ * - Do not manually enter the answers to the equations. For example, `const a = 9` would be incorrect as 9 is the answer to the equation you're being asked to write out */ -const a = "one plus eight" -const b = "22 times three" -const c = "the *remainder* of 5/4" -const d = "the variable 'a' minus 17" -const e = "the sum of the previous four variables" +const a = 1 + 8 +const b = 22 * 3 +const c = 5 % 4 +const d = a - 17 +const e = a + b + c + d module.exports = {a, b, c, d, e}