1/**
2 * My function description
3 * @param {String} a
4 * @param {String} b
5 * @param {Number} amount
6 * @example
7 * // returns "fooBar fooBar"
8 * myFunction('foo', 'Bar', 2)
9 * @returns {String}
10 */
11function myFunction(a, b, amount){
12 //do stuff
13}
14//Note that javascript is not a statically typed language and therefore you
15//will not recieve any syntax errors for passing in the wrong types.
16//The above code works in Visual Studio Code and intellisense.