Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

LEVEL 8 LESSON 7 JS COURSE

NEED HELP WITH JAVASCRIPT
by

1 Answer

iamabhishek
Here is the correct answer:

let square = function (num)
{
return num*num
};
let result = square(5);
console.log(result);

Login / Signup to Answer the Question.