I'm slightly confused by the nodeJS documentation.
For instance, looking at the assert module I instantly see
assert(value[, message])
how exactly do I read this? I understand assert is a function that takes a parameter called value, but what exactly does [, message] mean? Does it mean message is an array? Why does the comma not come before the initial opening bracket?