You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 02_Data Types and Variables/00_Data Types/02_JavaScript Data Types/01_.repl/src/JavascriptDataTypesExample.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,12 @@ var name = 'EXLskills'; // variable holds a string
6
6
letpoints=5.25// points holds a floating-point number
7
7
points=true;// points now holds a boolean value
8
8
9
-
constMAX_COUNT=250;// MAX_COUNT is a constant variable that holds a integer
9
+
constMAX_COUNT=250;// MAX_COUNT is a constant variable that holds an integer
10
10
/*
11
11
MAX_COUNT = 0; // will cause an error if uncommented, constant variables cannot be altered
0 commit comments