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 超基礎 コンソールに文字を表示する

Last updated at Posted at 2020-11-07

目的

  • JavaScriptを用いてコンソールに文字列を表示する方法をまとめる

前提条件

前提情報

  • コンソールに「こんにちは!!!!」と表示する処理を実装する。
  • 筆者はMacでChromeを用いて確認を実施している。

概要

  1. JavaScriptの記載
  2. 確認

詳細

  1. JavaScriptの記載
    1. index.htmlとdaialog_box.jsがあるディレクトリに移動する。

    2. 下記コマンドを実行してJavaScriptのファイルを開く。

      $ vi daialog_box.js
      
    3. 記載されているコードを削除し下記を記載する。

      daialog_box.js
      console.log('こんにちは!!!!');
      
  2. 確認
    1. フォルダからindex.htmlを探しダブルクリックで開く。

      test.png

    2. 下記ページが表示されることを確認する。

      このページの内容_と_Document.png

    3. 「JavaScript」の文字が表示されているページで右クリックをして「検証」をクリックし下記のようなページが開くことを確認する。

    4. 検証画面の「Console」をクリックする。

      Document.png

    5. JavaScriptで指定した文字列がConsoleで確認できることを確認する。

      Document-2.png

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?