Answers for "simple js function"

1

javascript basic function

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

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

function js

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language