Answers for "what is function in javascript?"

1

function js

function myFunc(param) {
  return param
}
console.log(myFunc("Hello World"))
Posted by: Guest on November-30-2020
0

function in js

function myFunction(p1, p2) {
    return p1 * p2;  
//  The function returns the product of p1 and p2
}
Posted by: Guest on October-31-2021

Code answers related to "what is function in javascript?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language