DEV Community

Discussion on: Everything you should know about Javascript functions

Collapse
 
deta19 profile image
mihai

you could continue this article with objects that have functions (methods) and how to use them.
also, didn;t you stop a function's run by using "return;" ? or im thinking of the functions that work on the DOM?

Collapse
 
celebritydev profile image
Saviour Essien

Stopping a function from running is when you return false; Returning false stops the function from executing further.