-
Notifications
You must be signed in to change notification settings - Fork 481
Added few more type tests. #282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
2f7e2ef
40ac965
005f823
65f8599
783a1dc
d7d8d6a
381623a
9621f66
e2a3b0a
e8b21f9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ var myObject = { | |
}; | ||
``` | ||
|
||
## Iterating over the enumerable properties of an object | ||
__Iterating over the enumerable properties of an object : __ | ||
|
||
``` | ||
var myObject = { | ||
|
@@ -43,14 +43,14 @@ var myObject = { | |
99999: 789 | ||
}; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The above three lines should be indented with one tab instead of two spaces. |
||
|
||
for(var prop in myObject) { | ||
console.log(key); | ||
for ( var prop in myObject ) { | ||
console.log("Property : "+prop+" ; value : "+myObject[prop]); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
} | ||
|
||
/* Would log : | ||
99999 | ||
validIdentifier | ||
some string | ||
Property : 99999 ; value : 789 | ||
Property : validIdentifier ; value : 123 | ||
Property : some string ; value : 456 | ||
*/ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Multi-line comment syntax is not used in many (any?) other places, so I think this should be turned into multiple single-line comments. But that's just my opinion :) |
||
``` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you change this to use the hashmark style headers that are in use throughout the rest of our markdown content? Thanks