File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
manual/en-US/coding-standards/chapters Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff 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
337335Use 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```
3873841 == "1"
388385```
389386
390387// evaluates false
391388
392- // TODO
393389```
3943901 === "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
You can’t perform that action at this time.
0 commit comments