顧客を作成するためのページがあるアプリケーションを作成しています。そのために、次のコードを書きました。
customer=new MobileApp.CustomerViewModel(); //for creating new customer
このオブジェクトを削除したい。どうすればこれを実行できますか??
顧客を作成するためのページがあるアプリケーションを作成しています。そのために、次のコードを書きました。
customer=new MobileApp.CustomerViewModel(); //for creating new customer
このオブジェクトを削除したい。どうすればこれを実行できますか??
customer = null
そのオブジェクトへの有効な参照が他にない場合、設定によりガベージ コレクターが有効になります。
delete customer;
削除について見る
delete
演算子は、オブジェクトからプロパティを削除します。変数ではなくグローバルオブジェクトのプロパティであるためcustomer
、削除できます
注:customer
グローバルなものでなければなりません
customer=new MobileApp.CustomerViewModel();
delete customer; // Valid one
var customer1=new MobileApp.CustomerViewModel();
delete customer1; // Not a valid one
サンプルフィドル