mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-27 07:33:57 +00:00
Merge pull request #3051 from simsieg/patch-1
[typescript/en] Fix naming of constant
This commit is contained in:
commit
10f0121b01
@ -29,7 +29,7 @@ let notSure: any = 4;
|
||||
notSure = "maybe a string instead";
|
||||
notSure = false; // okay, definitely a boolean
|
||||
|
||||
// Use const keyword for constant variables
|
||||
// Use const keyword for constants
|
||||
const numLivesForCat = 9;
|
||||
numLivesForCat = 1; // Error
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user