0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

JavaScriptのソースコードを読んでいる時に遭遇したこんな書き方知らなかったみたいなものたち

Posted at

この記事は何?

 私は最近とある会社でインターンとして働きはじめ、JavaScriptのソースコードを読んだり書いたりすることが増えました。私はJavaScriptだけでなく、PHPやC#でプログラムを書いたこともあるので、基本的な構文についてはおおよそ把握しているつもりでしたが、プログラムを読んでいる中で、この記述は一体なんなんだろう?というようなコードを見かけることが多かったので、備忘録的にこの記事にそれらをまとめていこうと思いました。この記事は随時、内容を追加していきたいと思っています。

delete文

 delete オブジェクト名.プロパティ名 で指定したプロパティをオブジェクトから削除する。

sample.js
let obj = {};
obj.prop = 1;

console.log("プロパティ削除前:" + obj.prop );

delete obj.prop;
console.log("プロパティ削除後:" + obj.prop );

実行結果
samplejs.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?