Entries from 2023-01-01 to 1 year

constアサーション「as const」とreadonlyの違い

オブジェクトの末尾にconstアサーション「as const」をつけると、オブジェクトすべてのプロパティに「readonly」がついた状態になる。「as const」がついたオブジェクトのプロパティに、再代入はできない。 const foo = { nation: "India", sex: "male", nam…