kingjiv
Member since
Recent Docs Activity
View all activityPage | Date | Comment |
---|---|---|
border-color |
The description of the 3 value syntax was wrong. Should be vertical, not horizontal. | |
String.prototype.substr() |
strLength-start should be strLength+start because start is negative. In the example given for instance, if start is -3 then strLength-start would be strLength+3 which is wrong. It should be (as stated) strLength-3, which means it is strLength+start |