1
3

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

#はじめに
vue.jsでフォームの値を取得し、フォームのデータを作成。
最後にdataのプロパティの初期化処理をしたんですが、空文字の『""』を何度も代入するということをやっていました。
これだと取得するデータが増えるとものすごく単調な気がして嫌ですね。。

main.js

this.newTitle = "";
this.newContent = "";
this.selected = "";

下記のように変更いたしました。

main.js

this.newTitle = this.newContent = this.selected = "";

vue.jsではある処理をしてvueインスタンスにあるdataを初期化するという処理をよくすると思うんですが(多分。。)このようにすれば簡潔にかけるので良さそうですね。
javascriptに限る話ではないかもですが。

1
3
2

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
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?