I don't see the point IMHO: The use of camelCase vs hyphen seperated identifiers is over debated I know, but I would like to share a recent observation: When editing the identifier in a text editor, it is easier to edit a hyphen separated identifier as apposed to camelCase.
Reason?
A double click on "first" in "first-name" selects only the first in the event that you may wish to refactor it to "last-name" this ensures that only the part that is relevant will be changed.
Using camelCase would require a full word edit in the case of lastDayOfMonth when instead you could just change it (if using hyphen) by double-clicking the "first" in "first-day-of-month" and changing it to "last" to get "last-day-of-month". It's a matter of taste of course, but notice that you provided for easier editing of code for perhaps others.
Secondly it's a habit that pays off when it comes to naming files that may get displayed in urls. I prefer to read hyphen separated file names in a url.