1
1

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】初歩の初歩:console.logで確認

Last updated at Posted at 2020-03-29

必要なものは、VScodeとchrome。

index.html
<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta charset="utf-8">
    <title>JabaScript practice</title>
  </head>
  <body>

    <script src=js/main.js> //JabaScriptは別ファイルで保存
//ファイルを作成していなくても、js/main.jsにカーソル合わせてctlクリックで新しいファイルが作れるよ。
    </script>
      
   </body>

 </html>
main.js
'use strict'; //エラーチェックを厳格にできる

console.log("hello")
console.log('hello world from main.js'); //'',""どちらでも良い

//文章内に'が入るときは以下二つの方法
console.log("it's me!")
console.log('it\'s me') //バックスラッシュ\はその次の文字を無効化してくれる

console.log確認方法

chromeに移り、index.htmlをドラッグ。 ctl + shift + I で”デベロッパーツール”を表示。 consoleタブをクリック→画面更新すると以下のような表示になります!

image.png

ちなみに画面設定はここで変更できます。私は左から二つ目にしてます。

image.png

以上です!

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?