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 1 year has passed since last update.

Javascript コンソールにアウトプット

Posted at

はじめに

以下の書籍を購入したのでその本に書かれていることを実践/整理するために本ページを作成しています。

参考書

目的

簡単なJavascriptのコードをブラウザ上のコンソールに書いて実行する

実践

作業環境

MacBookPro(2016)
macOS monterey(12.3)
chrome

手順

文字列を出力
console.log('おうむ返し');

「おうむ返し」と表示される

足し算
console.log(2 + 3);

「5」と表示される

引き算
console.log(150 - 38)

「112」と表示される

##まとめ
console.log()で括弧内の文字を出力したり、計算したりできる。

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?