0 votes
in JavaScript by
What is the name function in JavaScript and how can you define it?

1 Answer

0 votes
by
A named function in JavaScript declares a name once it gets defined. Example:

function named(){

// write code here

}

Related questions

0 votes
asked Oct 19, 2019 in JavaScript by SakshiSharma
0 votes
asked Mar 23, 2021 in JavaScript by sharadyadav1986
...