Answers for "functions in javascript with examples"

1

javascript basic function

const square = function(x) {
  return x * x;
};

console.log(square(12));
// → 144
Posted by: Guest on September-20-2021
1

functions in javascript

function name( parameter1 ,parameter 2,..)  //name signifies funcname
{
    
}
Posted by: Guest on April-03-2021

Code answers related to "functions in javascript with examples"

Code answers related to "Javascript"

Browse Popular Code Answers by Language