+ 1
The syntax is only a small part of what you need to learn to write quality code.
The syntax is only a small part of what you need to learn to write quality code. Software Architecture (Designing Software) is really the core part of each project and being a good engineer. In order to "organize" your code, functions are the key. Let's dive into functions! Replace/Complete the following code. (The XX is what you need to replace) // Following XXXXXX will be a function that will print using console.log("my_first_function") XXXXXX XXXXXX XXXXXX my_first_function();
4 odpowiedzi
+ 3
Is that your homework?
Show us the attempt that you have done.
& give a proper description you're not assigning anyone a task here at least make it sound like you're asking a question.
+ 2
Martin Taylor LMAO
+ 1
Martin Taylor definitely agree with you! 😉
Zhenis Otarbay write your first function, for example/напиши свою первую функцию, например:
// function definition
function my_first_function() {
console.log("my_first_function");
}
// function call
my_first_function();
0
Thank you!