Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between function and Function

What is the difference between function and Function?

like image 570
Tarek Saied Avatar asked May 26 '11 10:05

Tarek Saied


People also ask

What is the difference between a function and a functional?

Functional is different from function. A function is a mathematical machine which accepts one or more numbers as inputs and provides a number as an output. A functional is that accepts one or more functions as inputs and produces a number as an output. So, a Functional is a function of Functions. exp (ik.r)it is a function or functional?

What is the difference between a functional and a mathematical operator?

§ "A functional is a real-valued function on a vector space V, usually of functions." § "A mathematical operator is a mapping between two function spaces. If the range is on the real line or in the complex plane, the mapping is usually called a functional instead."

What is the difference between function declaration and function definition?

Functionally, the difference between function declaration and function definition is that the function declaration helps to indicate the compiler about the function and how to call that function, etc. while Function definition helps to write what the function should perform. It is the actual implementation of the function.

What is the difference between a functional and a density functional?

Functional is a function that takes a function as input. I.e. density functional is a function, which takes electron density as input and yields energy as output. Note, electron density is a function. As has been said before, a functional is a function takes another function as its argument.


2 Answers

function is a language keyword used to define functions.

Function is the builtin prototype object that represents all functions.

like image 55
Michael Borgwardt Avatar answered Sep 27 '22 18:09

Michael Borgwardt


See the following tutorial to get the detail information

https://developer.mozilla.org/en/JavaScript/Reference/Functions_and_function_scope

Function constructor, function means method

like image 33
Sunil Kumar Sahoo Avatar answered Sep 27 '22 19:09

Sunil Kumar Sahoo