I've just found a script for progress bars for Photoshop UI the function is set up as a variable in the following form, which I've not seen before.
var ProgressBar = function(/*str*/title)
Firstly why are the two parameters not separated by a comma? as in:
var ProgressBar = function(str, title)
Secondly what is the significance of /* */ around the string parameter?
Can anyone shed some light on this?