3
3

More than 3 years have passed since last update.

ChromeのデベロッパーツールのコンソールでJavaScriptのライブラリをちょこっと使いたいとき

Posted at

はじめに

CDNがあるライブラリ限定となります。
環境作るのめんどくさいときに役立つかと思います。

試しにmoment.jsをコンソールで使えるようにします。

const script = document.createElement('script')
// scriptタグを作る

script.src = 'https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.17.0/moment-with-locales.js'
// srcにCDNのURLを入れる

document.getElementsByTagName('head')[0].appendChild(script)
// headタグにscriptタグを入れる

const now = moment()
now.toDate()
// Thu Dec 19 2019 11:00:54 GMT+0900 (日本標準時)
3
3
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
3
3