Skip to content

Commit eba48a0

Browse files
Update JavascriptDataTypesExample.js
1 parent 0b1484d commit eba48a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

02_Data Types and Variables/00_Data Types/02_JavaScript Data Types/01_.repl/src/JavascriptDataTypesExample.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ var name = 'EXLskills'; // variable holds a string
66
let points = 5.25 // points holds a floating-point number
77
points = true; // points now holds a boolean value
88

9-
const MAX_COUNT = 250; // MAX_COUNT is a constant variable that holds a integer
9+
const MAX_COUNT = 250; // MAX_COUNT is a constant variable that holds an integer
1010
/*
1111
MAX_COUNT = 0; // will cause an error if uncommented, constant variables cannot be altered
1212
*/
1313

1414
console.log(count);
1515
console.log(name);
1616
console.log(points);
17-
console.log(MAX_COUNT);
17+
console.log(MAX_COUNT);

0 commit comments

Comments
 (0)