JavaScript 定数の利用 #--Java 2025年04月13日 1.サンプルconst を利用して宣言し、出力します。const constValue = 123console.log(constValue)2.実行結果123が出力されます。 PR