Login
Remember
Register
Ask a Question
How to create a function in JavaScript?
0
votes
asked
Jun 8, 2022
in
JavaScript
by
sharadyadav1986
How to create a function in JavaScript?
javascript-function
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 8, 2022
by
sharadyadav1986
To create a function in JavaScript, follow the following syntax.
function function_name(){
//function body
}
...