single
Writing our first code
メニューを表示するにはスワイプしてください
The very first exercise every programmer goes through is the printing Hello world! message to the console. Let's do it with JavaScript: you should use the console.log() statement like in the example:
The very first exercise every programmer goes through is the printing Hello world! message to the console. Let's do it with JavaScript: you should use the console.log() statement like in the example:
console.log('Hello world!');
Try running this code and you will see a sentence in parentheses printed in the console.
You can put any other message (inside the quotes):
console.log('What a good idea!')
スワイプしてコーディングを開始
Print another one message. Use the console.log() to print this message "I am learning JavaScript"
解答
console.log('Hello world!');
Try running this code and you will see a sentence in parentheses printed in the console.
You can put any other message (inside the quotes):
console.log('What a good idea!')
スワイプしてコーディングを開始
Print another one message. Use the console.log() to print this message "I am learning JavaScript"
解答
フィードバックありがとうございます!
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください