Skip to content

Commit fd8e6c8

Browse files
authored
Update variable.md
1 parent e098955 commit fd8e6c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

variable.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> private, public, protected, constant, static, string, numbers, array, boolean ...etc
44
5-
## JavaScript
5+
## javascript
66

77
```js
88
var a; // variable
@@ -19,7 +19,7 @@ let z = 'zzz'; // block scope local variable
1919
let Null = null, Undefined = undefined;
2020
```
2121

22-
## C#
22+
## csharp
2323

2424
```csharp
2525
class ConsoleApplication
@@ -50,7 +50,7 @@ class ConsoleApplication
5050
}
5151
```
5252

53-
## Python
53+
## python
5454

5555
```python
5656
helloWorld = "Hello World";

0 commit comments

Comments
 (0)