Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <main>
  <section id="example01">
    <h1>自作のErrorオブジェクトを例外として投げるようにした例</h1>
    <p><button>押して開始</button></p>
    <div class="console" />
  </section>
</main>
              
            
!

CSS

              
                *,
*::berore,
*::after {
  box-sizing: border-box;
}

h1 {
  margin-top: 0;
}

main {
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(auto-fit, minmax(49%, 1fr));
  gap: 1rem;
  justify-content: center;
  line-height: 1.4;
}

section {
  border: 1px solid #444;
  border-radius: 2rem;
  padding: 2rem;
}

pre {
  margin: 0.5rem 2rem;
}

              
            
!

JS

              
                const catchExample = document.querySelector("#example01");
const catchButton = catchExample.querySelector("button");
catchButton.addEventListener("click", catchSleep);
const catchConsole = document.querySelector("#example01 .console");

/**
 * 例外の伝播をハンドリングするコード例
 */
async function catchSleep(e) {
  const consoleNode = clearConsole(catchConsole);
  createNode(consoleNode, "article", "イベントハンドラ関数を実行");
  await sleep(1000);

  // ここでハンドリング!
  try {
    await otherFn(consoleNode);
  } catch (err) {
    // ハンドリング処理をここに記述
    createNode(catchConsole, "p", "例外を受け取りました!");
    createNode(
      catchConsole,
      "div",
      `- TypeErrorオブジェクトか: ${err instanceof TypeError}`
    );
    createNode(
      catchConsole,
      "div",
      `- Errorオブジェクトか: ${err instanceof Error}`
    );
    createNode(catchConsole, "div", `- name: ${err.name}`);
    createNode(catchConsole, "div", `- message: ${err.message}`);
    createNode(catchConsole, "div", "- stack (スタックトレース):");
    createNode(catchConsole, "pre", err.stack);
  }
}

/**
 * 例外の伝播を示すために、経由させる関数
 */
async function otherFn(catchConsole) {
  createNode(catchConsole, "article", "上記からさらに呼び出された関数を実行");
  await sleep(1000);
  return raiseExeption(catchConsole);
}

/**
 * 例外を発行する関数
 */
function raiseExeption(catchConsole) {
  createNode(catchConsole, "article", "例外を発行する関数を実行");

  throw new Error("失敗😅");
}

/**
 * テストコード用:画面のコンソール部をクリア
 */
function clearConsole(consoleNode) {
  while (consoleNode.lastChild) {
    consoleNode.removeChild(consoleNode.lastChild);

    // DOMツリーから取り除いたら、GCの対象にする
    consoleNode.lastChild = null;
  }

  return consoleNode;
}

/**
 * テストコード用:DOMノード生成&アペンド関数
 */
function createNode(targetNode, tagName, textContent) {
  const node = document.createElement(tagName);
  node.textContent = textContent;
  targetNode.appendChild(node);

  return targetNode;
}

/**
 * テストコード用:非同期処理用のダミー関数
 */
function sleep(ms = 1000) {
  return new Promise((res) => {
    setTimeout(() => res(), ms);
  });
}

              
            
!
999px

Console