Herausforderung: Multi-line Kommentar
Aufgabe
Kommentiere die Zeilen 3 bis 10 des Codes aus und ersetze die ___
durch die korrekte Syntax für einen Mehrzeilenkommentar.
1234567891011console.log("Hello, world!"); console.log("Welcome to the console!"); ___ console.log("I'm awesome!"); console.log("Today is a great day!"); console.log("The quick brown fox jumps over the lazy dog."); console.log("JavaScript is the language of the web."); console.log("Bananas are berries, but strawberries aren't."); console.log("Coding is my passion!"); ___ console.log("Don't forget to stay hydrated!");
Verwenden Sie den mehrzeiligen Kommentar, der mit /*
beginnt und mit */
endet.
1234567891011console.log("Hello, world!"); console.log("Welcome to the console!"); /* console.log("I'm awesome!"); console.log("Today is a great day!"); console.log("The quick brown fox jumps over the lazy dog."); console.log("JavaScript is the language of the web."); console.log("Bananas are berries, but strawberries aren't."); console.log("Coding is my passion!"); */ console.log("Don't forget to stay hydrated!");
Danke für Ihr Feedback!
Fragen Sie AI
Fragen Sie AI
Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen
Can you explain why we use multiline comments instead of single-line comments here?
What would happen if I used // for each line instead?
Can you show me how to uncomment those lines if I want them back?
Awesome!
Completion rate improved to 2.33
Herausforderung: Multi-line Kommentar
Swipe um das Menü anzuzeigen
Aufgabe
Kommentiere die Zeilen 3 bis 10 des Codes aus und ersetze die ___
durch die korrekte Syntax für einen Mehrzeilenkommentar.
1234567891011console.log("Hello, world!"); console.log("Welcome to the console!"); ___ console.log("I'm awesome!"); console.log("Today is a great day!"); console.log("The quick brown fox jumps over the lazy dog."); console.log("JavaScript is the language of the web."); console.log("Bananas are berries, but strawberries aren't."); console.log("Coding is my passion!"); ___ console.log("Don't forget to stay hydrated!");
Verwenden Sie den mehrzeiligen Kommentar, der mit /*
beginnt und mit */
endet.
1234567891011console.log("Hello, world!"); console.log("Welcome to the console!"); /* console.log("I'm awesome!"); console.log("Today is a great day!"); console.log("The quick brown fox jumps over the lazy dog."); console.log("JavaScript is the language of the web."); console.log("Bananas are berries, but strawberries aren't."); console.log("Coding is my passion!"); */ console.log("Don't forget to stay hydrated!");
Danke für Ihr Feedback!