Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

kingjiv

Member since
kingjiv

Recent Docs Activity

View all activity
Page 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