0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

猫よりアホな人間と一緒にJavaScript でボス管理bot作らない?初歩編

Posted at

良く聞くhelloworldを出力させてみよう

console.log('helloworld');

コンソールのログにhelloworldってやるよ!って認識でいいと思う。
;は文章が終わったよって事でいいと思うよ!

# 次は計算をしてみよう

console.log(1+1);

console.log('3+2');

console.log(4*5);

ログには、2、3+2、20、って表示されてるはずだよ!
'や"があると処理されずにそのまま表示されるよ!

#今回やったこと
botにボスの通知やら何かしら喋らせないと意味をなさい無いよね?
だから今回は言葉を喋らせることが出来るようになったよ!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?