You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The last two parameters below don't show the description in the signature help for that parameter, the first two do. It appears to be the [name] syntax that breaks this.
/** * @param {string} p1 - A string param * @param {string?} p2 - An optional param * @param {string} [p3] - Another optional param * @param {string} [p4="test"] - An optional param with a default value */functionf1(p1,p2,p3,p4){}