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