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: content/academy/switching_to_typescript/enums.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
---
2
2
title: Enums
3
-
description: Learn how to easily define, use, and manage constant values using this epic feature called "enums" that TypeScript brings to the table.
3
+
description: Learn how to easily define, use, and manage constant values using a cool feature called "enums" that TypeScript brings to the table.
4
4
menuWeight: 7.4
5
5
paths:
6
6
- switching-to-typescript/enums
7
7
---
8
8
9
9
# [](#enums) Enums!
10
10
11
-
Enums are an awesome feature offered by TypeScript that can be used to create automatically enumerated global constant identifiers that can also be used as custom types. We've dedicated an entire lesson to enums because they're a new feature brought into JavaScript by TypeScript, and because they can be massively useful in certain projects.
11
+
Enums are a nice feature offered by TypeScript that can be used to create automatically enumerated global constant identifiers that can also be used as custom types. We've dedicated an entire lesson to enums because they're a new feature brought into JavaScript by TypeScript, and because they can be quite useful in certain projects.
12
12
13
13
## [](#lets-talk-about-constants) Let's talk about constants
0 commit comments