Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 21e484d

Browse files
Merge pull request #18 from borsec-suveran/patch-15
Update JavascriptDataTypesExample.js
2 parents 0b1484d + eba48a0 commit 21e484d

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)

AltStyle によって変換されたページ (->オリジナル) /