We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f22d3d3 commit ccbf42bCopy full SHA for ccbf42b
01-Fundamentals-Part-1/starter/script.js
@@ -74,7 +74,7 @@ console.log(firstName + lastName);
74
// Math Operators
75
const now = 2037;
76
const ageJonas = now - 1991;
77
-const ageSarah = now - 2020;
+const ageSarah = now - 2018;
78
console.log(ageJonas, ageSarah);
79
80
console.log(ageJonas * 2, ageJonas / 10, 2 ** 3);
@@ -97,4 +97,6 @@ console.log(x);
97
console.log(ageJonas > ageSarah); // >, <, >=, <=
98
console.log(ageSarah >= 18);
99
100
-const isFullAge = ageSarah >= 18;
+const isFullAge = ageSarah >= 18;
101
+
102
+console.log(now - 1991 > now - 2018);
0 commit comments