Skip to content

Commit 8c7f233

Browse files
Clean up todos and unnecessary sections
1 parent 91b325a commit 8c7f233

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

manual/en-US/coding-standards/chapters/javascript.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,6 @@ myArr.push('foo');
321321
322322
## Functions
323323
324-
### Properties
325324
### Chaining Method Calls
326325
327326
```
@@ -331,7 +330,6 @@ $('.someElement')
331330
.fadeIn();
332331
```
333332
334-
### Hoisting
335333
## Conditional Statements
336334
337335
Use ternary syntax if:
@@ -382,14 +380,12 @@ Use strict equality operator === so that type is considered in comparison. Using
382380
383381
// evaluates true
384382
385-
## Events
386383
```
387384
1 == "1"
388385
```
389386
390387
// evaluates false
391388
392-
// TODO
393389
```
394390
1 === "1"
395391
```
@@ -442,10 +438,6 @@ if ( test ) {
442438
443439
#### TODO
444440
445-
- Finish Conditionals
446-
- Functions/subsections
447-
- Equality Operators
448-
- Events
449441
- Switch Statements vs other methods like Objects
450442
- Add jQuery examples
451443
- Double check accuracy of all examples

0 commit comments

Comments
 (0)