What is the difference between function and function

What is the difference between function and function

thanks

+6
source share
3 answers

Take this tutorial

Defining functions The Function constructor 

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

+2
source

function is a language keyword used to define functions.

function is a built-in prototype of an object that represents all functions.

+10
source

See the following tutorial for details.

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

Function constructor, function method means

+2
source

Source: https://habr.com/ru/post/889095/


All Articles