javascript シングルクォーテーションを文字として扱う

javascript シングルクォーテーションを文字として扱う

javascriptで、シングルクォーテーションを文字として扱うサンプルコードを掲載してます。ブラウザはchromeを使用しています。

環境

  • OS windows11 pro 64bit
  • Apache 2.4.43
  • ブラウザ chrome 106.0.5249.103

シングルクォーテーションを文字として扱う

シングルクォーテーションを文字として扱うには、バックスラッシュを使用します。

'use strict';

console.log(
  '\''
)

実行結果を確認すると、シングルクォーテーションが表示されていることが確認できます。

サンプルコード

以下は、
「実行」ボタンをクリックして、「シングルクォーテーション」を表示するサンプルコードとなります。

※cssには「tailwind」を使用して、アロー関数で関数は定義してます。

<!DOCTYPE html>
<html lang="ja">

<head>
  <meta charset="utf-8">
  <title>mebeeサンプル</title>
  <link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">  
</head>

<script>  

  const hoge = () => {

    bar.innerHTML =  '\''

  }

  window.onload = () => {

    btn.onclick = () => { hoge() }

  }

</script>

<body>
  <div class="container mx-auto my-56 w-1/3 px-4">

    <div id="sample" class="flex flex-col justify-center">
      
      <h1 id="foo" class="font-semibold text-purple-500 text-lg mr-auto">実行結果</h1>

      <h1 id="bar" class="font-semibold text-gray-500 text-lg mr-auto"></h1>

      <button id="btn"
        class="mb-2 md:mb-0 bg-transparent hover:bg-purple-300 text-purple-700 font-semibold hover:text-white py-2 px-4 border border-purple-300 hover:border-transparent rounded">
        実行
      </button>

    </div>

  </div>
</body>

</html>

実行結果を確認すると、結果が表示されていることが確認できます。