0
2

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 5 years have passed since last update.

JavaScript 基本

Last updated at Posted at 2018-10-08

JavaScriptに関する自分用のメモです。
随時更新していきます。

jsfiddle

  • html, css, jsを管理できるサービス
  • Your public fiddle から自分が作成した今までのスニペットを確認できる
https://jsfiddle.net/user/ユーザー名/fiddles/
Run 実行
Update 保存
Set as base URLを最新にする

ES6

準備中

ハマりどころ

エラーが出たり、何をして良いかわからなくなってしまったとき

  • エラーを読んで原因を突き止める
"ReferenceError: ●●●● is not defined"
  • ライブラリが読まれていない
  • どこまでができていて、どこまでが間違っているかを console.log() などを使って突き止める
  • import 及び export されていない
  • 変数が定義されていない
  • 型が間違っている
  • いきなりコードを書かずにやりたい処理を紙に書いてみる
  • エラーが出るのは正常な動作、むしろヒントを教えてくれているので怖がらない
  • 文法エラー(SyntaxError)はよく見直す
  • 何がわからないのか整理する

読み込みタイミング

イベント

バブリング

API

Qiita API

その他

MVC モデル

モーダル

イディオム

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?