September 2024
Beginner to intermediate
985 pages
35h 37m
English
The more extensive your programs and the more complex the software you develop, the more source code you will have to manage. In addition, certain tasks become repetitive over time. Therefore, it makes sense to somehow group the source code into reusable code blocks. This has the advantage that on the one hand, you do not lose track of your program, and on the other hand, you can reuse these functions instead of continuously retyping individual statements every time. A function can be called at different places within a program.
In JavaScript, you usually define a function using the function keyword. Since ECMAScript 6, there is also a short notation that does not require the keyword, ...
Read now
Unlock full access