howdylikes

Google Developersってわかりづらいよね

JavaScript

Failed to mount component: template or render function not defined. (found in root instance)

Vue.jsを使っていてエラーが出たのでメモ [Vue warn]: Failed to mount component: template or render function not defined. (found in root instance) このページに書いてあるようにwebpackの設定でresolveを追加 vuejs.org 上記エラーを解決したら以下の…

Parsing error: 'import' and 'export' may appear only with 'sourceType: module'

ESLint使っているときに表題のエラーが発生 .eslintrcに以下の設定を追加で解決 "parserOptions": { "sourceType": "module" }, 参考 https://github.com/AtomLinter/linter-eslint/issues/462

JavaScriptでArrayオブジェクトの文字列結合の速度検証

よく見るコードだとjoin使っているのが多いですがパフォーマンス的にはどうなんだ?というのを試してみる。 ggっても出てくると思うけど勉強がてらということで。 前提条件 検証パターンは以下の5つでそれぞれ100万回 for文使って+演算子 Array.forEachで+…