Answers for "js doc"

1

js doc

/**
 * This is a function.
 *
 * @param {string} n - A string param
 * @return {string} A good string
 *
 * @example
 *
 *     foo('hello')
 */

function foo(n) {
  return n
}
Posted by: Guest on April-21-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language