0
1

More than 3 years have passed since last update.

JavaScriptの概要

Last updated at Posted at 2019-10-21

随時追記します

ソースプログラムのマシン語の変換方式

  • コンパイラ方式
    • 「コンパイラ」っていうソフトウェア使って一気に変換を行う
  • インタプリタ方式
    • 1行ずつ変換していく

JavaScriptインタプリタ方式だよ

Java、C#、Python とかは本格的なオブジェクト指向の概念を取り入れている
JavaScriptは簡単なオブジェクト指向を取り入れている⇒オブジェクトベース指向

⇒ 初心者に優しいよ!!!!!!!

JavaScriptに必要なものは?

  • エディタ(メモ帳とかサクラエディタとか)
  • エディタの文字コード⇒UTF-8にする
  • プログラムを動かすにはWebブラウザを使用

必要なことその2

  • 2つの<'meta>タグが必要
    • プログラミング言語の指定
    • 文字コードの指定
  • <'script>タグのtype属性は、「text/javascript」を指定
0
1
1

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
1